describe('Testing', () => {
it('Read ENV', () => {
expect(process.env.REACT_APP_URL).toMatch("https://www.google.com")
})
})
我有一个.env.test文件,并且它的Google网址已分配给REACT_APP_URL:
REACT_APP_URL=https://www.google.com
当我运行npm test
时,它显示此错误
expect(string)[.not].toMatch(expected)
string value must be a string.
Received: undefined
有人可以告诉我出了什么问题吗? .env.test位于正确的目录级别,因为我使用的是.env.staging文件,并且可以正常工作。