Ошибка: не удалось найти файл привязок при запуске Cypress с Parcel - PullRequest
1 голос
/ 29 марта 2019

Когда я бегу cypress run --browser chrome, я получаю:

The function exported by the plugins file threw an error.

We invoked the function exported by `C:\Users\LFOLMERT\projects\FE\signup\cypress\plugins\index.js`, but it threw an error.

 Error: Could not locate the bindings file. Tried:
 → C:\Users\LFOLMERT\projects\FE\signup\node_modules\deasync\build\deasync.node
 (...stack trace...)
    at tryModuleLoad (module.js:466:12)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

Чтобы исправить это, я попробовал следующие команды:

npm rebuild
yarn install --force
npm rebuild --update-binary
rm -rf node_modules && yarn install
rm -rf node_modules && npm install bindings && npm install
cd ./node_modules/deasync && node-gyp rebuild
./node_modules/.bin/electron-rebuild

ни один из них не помог, node-gyp что-то производил в каталог deasync/build, но повторный запуск Cypress приводил только к различным ошибкам. Запуск electron-rebuild удалял встроенные файлы.

Мои зависимости в package.json:

{
  "dependencies": {
    "babel": "^6.23.0",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
    "babel-register": "^6.26.0",
    "bindings": "^1.5.0",
    "chai": "^4.2.0",
    "cross-env": "^5.2.0",
    "cypress": "^3.2.0",
    "cypress-failed-log": "^2.4.2",
    "cypress-parcel-preprocessor": "^1.0.0",
    "electron-builder": "^20.39.0",
    "electron-prebuilt": "^1.4.13",
    "electron-rebuild": "^1.8.4",
    "node-gyp": "^3.8.0",
    "parcel-bundler": "^1.12.3"
  },
}

Мой кипарис / плагины / index.js:

module.exports = (on) => {
    on('task', {
        failed: require('cypress-failed-log/src/failed')(),
    });

    on('file', {
        preprocessor: require('cypress-parcel-preprocessor')(),
    });
};
...