lighthouse 8.6.0-dev.20211024 → 8.6.0-dev.20211025
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jest.config.js +1 -1
- package/package.json +3 -3
- package/tsconfig-all.json +1 -1
package/jest.config.js
CHANGED
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
'**/report/**/*-test.js',
|
|
15
15
|
'**/lighthouse-core/test/fraggle-rock/**/*-test-pptr.js',
|
|
16
16
|
'**/lighthouse-treemap/**/*-test.js',
|
|
17
|
-
'**/
|
|
17
|
+
'**/viewer/**/*-test.js',
|
|
18
18
|
'**/third-party/**/*-test.js',
|
|
19
19
|
'**/clients/test/**/*-test.js',
|
|
20
20
|
'**/shared/**/*-test.js',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
|
-
"version": "8.6.0-dev.
|
|
3
|
+
"version": "8.6.0-dev.20211025",
|
|
4
4
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
5
5
|
"main": "./lighthouse-core/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"test": "yarn diff:sample-json && yarn lint --quiet && yarn unit && yarn type-check",
|
|
39
39
|
"test-bundle": "yarn smoke --runner bundle -j=1 --retries=2 --invert-match forms",
|
|
40
40
|
"test-clients": "yarn jest \"$PWD/clients/\" && yarn jest --testMatch=\"**/clients/test/**/*-test-pptr.js\"",
|
|
41
|
-
"test-viewer": "yarn unit-viewer && yarn jest --testMatch=\"**/
|
|
41
|
+
"test-viewer": "yarn unit-viewer && yarn jest --testMatch=\"**/viewer/**/*-test-pptr.js\"",
|
|
42
42
|
"test-treemap": "yarn unit-treemap && yarn jest --testMatch=\"**/lighthouse-treemap/**/*-test-pptr.js\"",
|
|
43
43
|
"test-lantern": "bash lighthouse-core/scripts/test-lantern.sh",
|
|
44
44
|
"test-legacy-javascript": "bash lighthouse-core/scripts/test-legacy-javascript.sh",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"unit-cli": "yarn jest \"lighthouse-cli/\"",
|
|
49
49
|
"unit-report": "yarn jest \"report/\"",
|
|
50
50
|
"unit-treemap": "yarn jest \"lighthouse-treemap/.*-test.js\"",
|
|
51
|
-
"unit-viewer": "yarn jest \"
|
|
51
|
+
"unit-viewer": "yarn jest \"viewer/.*-test.js\"",
|
|
52
52
|
"unit-flow": "yarn jest \"flow-report/.*-test.[tj]s[x]?\"",
|
|
53
53
|
"unit": "yarn jest",
|
|
54
54
|
"unit:ci": "NODE_OPTIONS=--max-old-space-size=8192 npm run jest --ci .",
|
package/tsconfig-all.json
CHANGED