在我编写测试用例的测试文件中,我导入了一个打字稿文件,如下所示:
@H_403_2@import {rootReducer} from "../src/reducers/rootReducer";
在rootReducer.ts中,我导入了另一个打字稿文件,如下所示:
@H_403_2@import taskReducer from "./taskReducer.ts"; @H_403_2@SyntaxError: Unexpected reserved word at src/reducers/rootReducer.ts:7rootReducer.ts和taskReducer.ts都位于文件夹/ src / reducers下
如果从import语句中删除“.ts”,但在浏览器中抛出错误,则没有失败的测试.该应用程序将无法运行
小袋鼠配置如下:
@H_403_2@module.exports = function (wallaby) { return { files: [ 'src/*.ts','src/**/*.ts' ],tests: [ 'test/*Test.ts' ],testFramework: "mocha",env: { type: 'node' },compilers: { '**/*.ts': wallaby.compilers.typeScript({ /* 1 for CommonJs*/ module: 1 }) } } };