Avajs / ava import @ sign проблемы - PullRequest
0 голосов
/ 04 ноября 2018

Я использую ava с Nuxt.js для тестирования своего кода node.js, когда я запускаю тест с командой:

ava api.test.js

Я получаю эту ошибку:

  Uncaught exception in test/api.test.js

  ~/test/api.test.js:2

   1: import test from 'ava'
   2: import Contract from '@/apis/api'
   3:

  Error: Cannot find module '@/apis/api'

  Object.<anonymous> (test/api.test.js:2:1)
  Module._compile (node_modules/pirates/lib/index.js:83:24)
  Object.newLoader [as .js] (node_modules/pirates/lib/index.js:88:7)

  ✖ test/api.test.js exited with a non-zero exit code: 1

  1 uncaught exception

Это мой код для api.test.js:

import test from 'ava'
import Api from '@/apis/api'

test('test function', async (t) => {
  console.log(await new Api().getItems()) 
  t.pass()
})

Это раздел ava в моем пакете. Json:

 "ava": {
    "require": [
      "@babel/register",
      "@babel/polyfill"
    ]
  }

Я использую следующие плагины:

  • "@ babel / runtime": "^ 7.1.2"
  • "@ babel / plugin-transform-runtime": "^ 7.1.0"

А это мой .babelrc:

{
  "presets": [
    [
      "@babel/preset-env",
      {
        "targets": {
          "node": "current"
        }
      }
    ]
  ],
  "plugins": [
    [
      "@babel/plugin-transform-runtime"
    ],
    [
      "@babel/plugin-proposal-decorators",
      {
        "legacy": true
      }
    ],
    "@babel/plugin-syntax-dynamic-import",
    "@babel/plugin-syntax-import-meta",
    "@babel/plugin-proposal-class-properties",
    "@babel/plugin-proposal-json-strings",
    "@babel/plugin-proposal-function-sent",
    "@babel/plugin-proposal-export-namespace-from",
    "@babel/plugin-proposal-numeric-separator",
    "@babel/plugin-proposal-throw-expressions",
    "@babel/plugin-proposal-export-default-from",
    "@babel/plugin-proposal-logical-assignment-operators",
    "@babel/plugin-proposal-optional-chaining",
    [
      "@babel/plugin-proposal-pipeline-operator",
      {
        "proposal": "minimal"
      }
    ],
    "@babel/plugin-proposal-nullish-coalescing-operator",
    "@babel/plugin-proposal-do-expressions",
    "@babel/plugin-proposal-function-bind"
  ]
}

Чего мне не хватает?

Спасибо за помощь.

...