Skip to content

Commit

Permalink
Workaround source-map issue in Node 18
Browse files Browse the repository at this point in the history
Workaround for mozilla/source-map#454 since we
seem to be hitting this error, causing jest reporting to fail.
  • Loading branch information
diracdeltas committed Oct 17, 2023
1 parent e83e40c commit daac6ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -28,7 +28,7 @@
"format": "node ./build/commands/scripts/commands.js format",
"mass_rename": "node ./build/commands/scripts/commands.js mass_rename",
"test": "node ./build/commands/scripts/commands.js test",
"test:scripts": "jest build/commands/lib build/commands/scripts",
"test:scripts": "NODE_OPTIONS=--no-experimental-fetch jest build/commands/lib build/commands/scripts",
"test-security": "npm run check_security && npm run audit_deps && npm run network-audit",
"tslint": "npm run eslint",
"eslint": "eslint ./components",
Expand All @@ -39,8 +39,8 @@
"web-ui": "webpack --config components/webpack/webpack.config.js --colors",
"build-storybook": "build-storybook -c .storybook -o .storybook-out",
"storybook": "start-storybook",
"test-unit": "jest -t",
"test-unit:wallet": "jest --coverage=false components/brave_wallet_ui",
"test-unit": "NODE_OPTIONS=--no-experimental-fetch jest -t",
"test-unit:wallet": "NODE_OPTIONS=--no-experimental-fetch jest --coverage=false components/brave_wallet_ui",
"test-python-scripts": "npm run pep8 && PYTHONPATH=./script python -m unittest discover -s ./script/test",
"update_symlink": "node ./build/commands/scripts/commands.js update_symlink",
"build_fuzzer": "node ./build/commands/scripts/commands.js build_fuzzer",
Expand Down

0 comments on commit daac6ed

Please sign in to comment.