@genesislcap/foundation-testing 14.152.1-alpha-0ec6846ed3a.0 → 14.152.2-alpha-374f6b1.0
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/dist/cjs/jsdom/setup.js
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.teardown = exports.setup = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const jsdom_1 = require("jsdom");
|
|
6
|
+
const utils_1 = require("../utils");
|
|
6
7
|
/**
|
|
7
8
|
* Jsdom setup.
|
|
8
9
|
* @public
|
|
@@ -31,13 +32,13 @@ const setup = () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
|
31
32
|
/**
|
|
32
33
|
* Longstanding issue it seems, https://github.com/jsdom/jsdom/issues/2124
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
utils_1.logger.debug('Please note JSDOM does not support @import, skipping insertion.');
|
|
35
36
|
}
|
|
36
37
|
else {
|
|
37
38
|
/**
|
|
38
39
|
* Unknown malformation.
|
|
39
40
|
*/
|
|
40
|
-
|
|
41
|
+
utils_1.logger.debug('The CSS rule you are inserting is likely malformed', rule);
|
|
41
42
|
}
|
|
42
43
|
/**
|
|
43
44
|
* Return index as if were successful.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../../src/jsdom/setup.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../../src/jsdom/setup.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,eAAO,MAAM,KAAK,qBAsFjB,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,QAAQ,qBAsCpB,CAAC"}
|
package/dist/esm/jsdom/setup.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __awaiter } from "tslib";
|
|
2
2
|
import { JSDOM } from 'jsdom';
|
|
3
|
+
import { logger } from '../utils';
|
|
3
4
|
/**
|
|
4
5
|
* Jsdom setup.
|
|
5
6
|
* @public
|
|
@@ -28,13 +29,13 @@ export const setup = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
28
29
|
/**
|
|
29
30
|
* Longstanding issue it seems, https://github.com/jsdom/jsdom/issues/2124
|
|
30
31
|
*/
|
|
31
|
-
|
|
32
|
+
logger.debug('Please note JSDOM does not support @import, skipping insertion.');
|
|
32
33
|
}
|
|
33
34
|
else {
|
|
34
35
|
/**
|
|
35
36
|
* Unknown malformation.
|
|
36
37
|
*/
|
|
37
|
-
|
|
38
|
+
logger.debug('The CSS rule you are inserting is likely malformed', rule);
|
|
38
39
|
}
|
|
39
40
|
/**
|
|
40
41
|
* Return index as if were successful.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-testing",
|
|
3
3
|
"description": "Genesis Foundation Testing",
|
|
4
|
-
"version": "14.152.
|
|
4
|
+
"version": "14.152.2-alpha-374f6b1.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"typescript": "^4.5.5"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@genesislcap/foundation-logger": "14.152.
|
|
69
|
+
"@genesislcap/foundation-logger": "14.152.2-alpha-374f6b1.0",
|
|
70
70
|
"@microsoft/fast-element": "^1.12.0",
|
|
71
71
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
72
72
|
"@playwright/test": "^1.18.1",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "f17eb1370c7e201bb90bd945ff664992d3f0a179"
|
|
91
91
|
}
|