Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ dist/
lib/quagga.js
cypress/videos
.nyc_output
tmp/
1 change: 1 addition & 0 deletions cypress/e2e/browser.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ window.ENV = { development: true, production: false, node: false };
import '../../src/analytics/test/browser/result_collector.spec.ts';
import '../../src/input/test/browser/exif_helper.spec';
import '../../src/input/test/browser/camera_access.spec.ts';
import '../../src/input/test/browser/frame_grabber_grab.spec.ts';
import '../../src/common/test/browser/mediaDevices.spec.ts';
38 changes: 3 additions & 35 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
"test:browser-all": "npm run cypress:run",
"test:import": "mocha test/test-import.mjs",
"test:node": "npx cross-env NODE_ENV=test ts-mocha -p test/tsconfig.json src/**/test/node/*.spec.* src/**/test/*.spec.* test/integration/**/*.spec.ts",
"test:node:frame-grabber": "npx cross-env NODE_ENV=test ts-mocha -p test/tsconfig.json src/input/test/node/frame_grabber_grab.spec.ts",
"test:browser:frame-grabber": "npx cross-env NODE_ENV=development BUILD_ENV=development NODE_OPTIONS=--openssl-legacy-provider cypress run --env BUILD_ENV=development --spec cypress/e2e/browser.cy.ts",
"test:require": "mocha test/test-require",
"test:module": "npm run test:require && npm run test:import",
"test": "npm run cypress:run && npx cross-env NODE_ENV=test BUILD_ENV=development ts-mocha -p test/tsconfig.json src/**/test/node/*.spec.* src/**/test/*.spec.* test/integration/**/*.spec.ts",
Expand Down
Loading