Javascript Mocha测试:无法在模块外使用导入语句

Javascript Mocha测试:无法在模块外使用导入语句,javascript,node.js,typescript,mocha.js,Javascript,Node.js,Typescript,Mocha.js,我不确定这是否是一个TS设置,或者需要调整什么,或者其他什么。我已经看过了,这对我没有帮助:这些关于使用的帖子毫无意义,我在这里运行测试 我使用mocha-r ts node/register src/test/***.spec.tsx-r src/test/compiler.ts--color-w 我从“react Router dom”中得到了一个导入{MemoryRouter as Router}的错误: 无法在模块外部使用导入语句 精选的.company.group.tsx import

我不确定这是否是一个TS设置,或者需要调整什么,或者其他什么。我已经看过了,这对我没有帮助:这些关于使用
的帖子毫无意义,我在这里运行测试

我使用mocha
-r ts node/register src/test/***.spec.tsx-r src/test/compiler.ts--color-w

我从“react Router dom”中得到了一个导入{MemoryRouter as Router}的错误

无法在模块外部使用导入语句

精选的.company.group.tsx

import { MemoryRouter as Router } from "react-router-dom";
import { expect, mount, React } from "../../test.imports";
import { FeaturedCompanyGroup, FormattedFeaturedCompany } from "../../../client/Company/FeaturedCompanies";

describe("Featured Company Group", () => {
    const country: Country = {
        id: 0,
        name: "string",
        images: {
            flag: "string"
        }
    };
...
我正在使用:

"node": "14.x"
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"@types/mocha": "^8.0.0",
"@types/mocha": "^8.0.0",
我有根目录。/tsconfig.json:

{
  "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */
        "outDir": "./build",
    "target": "ES2020",                     /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
    "module": "es2020",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
    "lib": ["es5", "es6", "dom"],                      /* Specify library files to be included in the compilation. */
        "moduleResolution": "node",
        "allowJs": false,                     /* Allow javascript files to be compiled. */
//      "checkJs": true,                     /* Report errors in .js files. */
    "jsx": "react",
    "noImplicitAny": false,
        "sourceMap": false,                   /* Generates corresponding '.map' file. */
    "rootDir": "./",                     /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
        "removeComments": true,              /* Do not emit comments to output. */
    "strict": true,                      /* Enable all strict type-checking options. */
        "noUnusedLocals": true,                /* Report errors on unused locals. */
        "noUnusedParameters": true,            /* Report errors on unused parameters. */
//    "rootDirs": ["."],                        /* List of root folders whose combined content represents the structure of the project at runtime. */
    "typeRoots": [
      "node_modules/@types"
    ],                      /* List of folders to include type definitions from. */
        "esModuleInterop": true,
        "allowSyntheticDefaultImports": true,  /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
        "preserveSymlinks": true,              /* Do not resolve the real path of symlinks. */
        "resolveJsonModule": true,
        "skipLibCheck": true,                     /* Skip type checking of declaration files. */
    "forceConsistentCasingInFileNames": true,
//      "strictNullChecks": true
    },
    "include": [
        "src"
    ],
    "exclude": [
        "/node_modules",
        "/src/server",
        "/src/client/js/ink-config.js",
        "**/test",
        "dist"
  ]
}
我有一个/src/test/tsconfig.json。(出于某种原因,我不认为这实际上是在扩展我的根目录,它似乎不会影响此tsconfig):


看起来您正在使用“监视”模式,这需要根据。

您的
包.json中是否有
“类型”:“模块”
?这就是Node.js知道
.js
文件是ES模块的原因。有关如何使用ES模块的更多信息,请参阅。是的,但没有任何区别这些测试在重命名为spec之前运行得很好。tsalso无论我是否处于监视模式,我仍然会遇到此错误
{
    "extends": "../../tsconfig.json",
    "compilerOptions": {
        "noEmit": true,
        "module": "es2020",
        "target": "es2020",
        "types": ["node","mocha", "chai", "react"],
        "lib": ["es6"],
        "compileOnSave": false,
        "jsx": "react",
        "sourceMap": false,
        "skipLibCheck": true,
        "esModuleInterop": true
    },
    "include": ["./**/*spec.tsx"],
    "exclude": ["node_modules","./build"]
}