|
35 | 35 | "test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha 'packages/**/*.test.{js,ts,tsx}' --exclude '**/node_modules/**' && nyc report -r lcovonly", |
36 | 36 | "test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha 'packages/**/*.test.{js,ts,tsx}' --exclude '**/node_modules/**' && nyc report --reporter=html", |
37 | 37 | "test:karma": "cross-env NODE_ENV=test karma start test/karma.conf.js", |
38 | | - "test:unit": "cross-env NODE_ENV=test TZ='CET' mocha 'packages/**/*.test.{js,ts,tsx}' -n expose_gc", |
| 38 | + "test:unit": "cross-env NODE_ENV=test mocha 'packages/**/*.test.{js,ts,tsx}' -n expose_gc", |
39 | 39 | "test:e2e": "cross-env NODE_ENV=production yarn test:e2e:build && concurrently --success first --kill-others \"yarn test:e2e:run\" \"yarn test:e2e:server\"", |
40 | 40 | "test:e2e:build": "webpack --config test/e2e/webpack.config.js", |
41 | 41 | "test:e2e:dev": "concurrently \"yarn test:e2e:build --watch\" \"yarn test:e2e:server\"", |
42 | | - "test:e2e:run": " TZ='CET' mocha --config test/e2e/.mocharc.js 'test/e2e/**/*.test.{js,ts,tsx}'", |
| 42 | + "test:e2e:run": "mocha --config test/e2e/.mocharc.js 'test/e2e/**/*.test.{js,ts,tsx}'", |
43 | 43 | "test:e2e:server": "serve test/e2e -p 5001", |
44 | 44 | "test:e2e-website": "playwright test test/e2e-website --config test/e2e-website/playwright.config.ts", |
45 | 45 | "test:e2e-website:dev": "PLAYWRIGHT_TEST_BASE_URL=http://localhost:3001 playwright test test/e2e-website --config test/e2e-website/playwright.config.ts", |
46 | 46 | "test:regressions": "cross-env NODE_ENV=production yarn test:regressions:build && concurrently --success first --kill-others \"yarn test:regressions:run\" \"yarn test:regressions:server\"", |
47 | 47 | "test:regressions:build": "webpack --config test/regressions/webpack.config.js", |
48 | 48 | "test:regressions:dev": "concurrently \"yarn test:regressions:build --watch\" \"yarn test:regressions:server\"", |
49 | | - "test:regressions:run": " TZ='CET' mocha --config test/regressions/.mocharc.js --delay 'test/regressions/**/*.test.js'", |
| 49 | + "test:regressions:run": "mocha --config test/regressions/.mocharc.js --delay 'test/regressions/**/*.test.js'", |
50 | 50 | "test:regressions:server": "serve test/regressions -p 5001", |
51 | 51 | "test:performance": "cross-env NODE_ENV=production yarn test:performance:build && concurrently --success first --kill-others \"yarn test:performance:run\" \"yarn test:performance:server\"", |
52 | 52 | "test:performance:dev": "concurrently \"yarn test:performance:build --watch\" \"yarn test:performance:server\"", |
|
0 commit comments