Я пытаюсь создать несколько функций, используя тестовую разработку (TDD)
Я пишу в javascript.
checkTransparency (urlString) maketransparent (urlString) Я пытаюсь протестировать и разработать две функции, которые находятся в файле с именем transcript. js. Они используют inkscape и graphicsmagick npm. Я проверил, что checkTransparent работает в каком-то другом моем проекте, но я пытаюсь убедиться, что могу просто скопировать и вставить этот прозрачный. js в другой проект и использовать его в другом месте.
Моя структура папок проекта следующая:
+ node_modules
+ src
--- transparent.js
+ test
--- transparent.spec.js
+ package.json
+ package-lock.json
+ jest.config.js
Я использую Jest в качестве тестового фреймворка. Проблема в том, что я запускаю шутку (или npm тест) Я получаю следующее:
FAIL test / transparent.spe c. js ● Не удалось запустить набор тестов
Jest encountered an unexpected token
This usually means that you are trying to import a file which Jest cannot parse, e.g. it's not plain JavaScript.
By default, if Jest sees a Babel config, it will use that to transform your files, ignoring "node_modules".
Here's what you can do:
• To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
• If you need a custom transformation specify a "transform" option in your config.
• If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.
You'll find more details and examples of these config options in the docs:
https://jestjs.io/docs/en/configuration.html
Details:
\\..............\transparent\test\transparent.spec.js:4 <FEW DETAILS OMITTED HERE DELIBERATELY>
import { checkTransparency, makeTransparent } from "../src/transparent"; // const transparent = require("../src/transparent");
^^^^^^
SyntaxError: Cannot use import statement outside a module
at Runtime._execModule (C:/Users/Kjeong/AppData/Local/Yarn/Data/global/node_modules/jest-runtime/build/index.js:988:58)
Наборы тестов: 1 не пройден, 1 всего тестов: 0 всего снимков: 0 всего, время: 0,862s Запущены все наборы тестов.
my jest.config. js:
module.exports = {
testEnvironment: "node",
moduleDirectories: ["node_modules", "src", "transparent"],
moduleFileExtensions: [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
],
clearMocks: true,
}
Я попробовал следующий экспорт, чтобы заставить эту вещь работать:
export function checkTransparency(urlString) { ... }
export function makeTransparent(urlString) {... }
module.exports = {
checkTransparency: checkTransparency,
makeTransparent: makeTransparent,
};