我一直在改变这段代码几个小时,我觉得现在是时候寻求帮助了。它很简单,但不起作用。我得到客户=== undefined
// customers.test.js
import { expect } from 'chai';
import { Customers } from './customers.server.js';
/* eslint-env mocha */
describe('Customers', () => {
it('customers returns 1', () => {
expect(Customers).to.eq(1);
});
});
上述代码工作正常,但客户未定义。这是我正在测试的服务器控制器。
// customers.server.js
function test1() {
return 1;
}
export default test1();