@cedarjs/testing 1.0.0-canary.12541 → 1.0.0-canary.12543
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/config/jest/web/jest-preset.js +1 -1
- package/package.json +13 -10
|
@@ -72,7 +72,7 @@ module.exports = {
|
|
|
72
72
|
* Mock out files that aren't particularly useful in tests. See fileMock.js for more info.
|
|
73
73
|
*/
|
|
74
74
|
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|css)$':
|
|
75
|
-
'@cedarjs/testing/dist/web/fileMock.js',
|
|
75
|
+
'@cedarjs/testing/dist/cjs/web/fileMock.js',
|
|
76
76
|
// Support for importing files with extensions (like you'd do in ESM projects)
|
|
77
77
|
'^(\\.{1,2}/.*)\\.js$': '$1',
|
|
78
78
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/testing",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12543+601429c17",
|
|
4
4
|
"description": "Tools, wrappers and configuration for testing a Cedar project.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,6 +37,9 @@
|
|
|
37
37
|
"./dist/cjs/web/mockRequests.js": {
|
|
38
38
|
"default": "./dist/cjs/web/mockRequests.js"
|
|
39
39
|
},
|
|
40
|
+
"./dist/cjs/web/fileMock.js": {
|
|
41
|
+
"default": "./dist/cjs/web/fileMock.js"
|
|
42
|
+
},
|
|
40
43
|
"./auth": {
|
|
41
44
|
"import": {
|
|
42
45
|
"types": "./dist/web/mockAuth.d.ts",
|
|
@@ -98,13 +101,13 @@
|
|
|
98
101
|
"test:watch": "vitest watch"
|
|
99
102
|
},
|
|
100
103
|
"dependencies": {
|
|
101
|
-
"@cedarjs/auth": "1.0.0-canary.
|
|
102
|
-
"@cedarjs/babel-config": "1.0.0-canary.
|
|
103
|
-
"@cedarjs/context": "1.0.0-canary.
|
|
104
|
-
"@cedarjs/graphql-server": "1.0.0-canary.
|
|
105
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
106
|
-
"@cedarjs/router": "1.0.0-canary.
|
|
107
|
-
"@cedarjs/web": "1.0.0-canary.
|
|
104
|
+
"@cedarjs/auth": "1.0.0-canary.12543",
|
|
105
|
+
"@cedarjs/babel-config": "1.0.0-canary.12543",
|
|
106
|
+
"@cedarjs/context": "1.0.0-canary.12543",
|
|
107
|
+
"@cedarjs/graphql-server": "1.0.0-canary.12543",
|
|
108
|
+
"@cedarjs/project-config": "1.0.0-canary.12543",
|
|
109
|
+
"@cedarjs/router": "1.0.0-canary.12543",
|
|
110
|
+
"@cedarjs/web": "1.0.0-canary.12543",
|
|
108
111
|
"@testing-library/jest-dom": "6.5.0",
|
|
109
112
|
"@testing-library/react": "14.3.1",
|
|
110
113
|
"@testing-library/user-event": "14.5.2",
|
|
@@ -122,7 +125,7 @@
|
|
|
122
125
|
"whatwg-fetch": "3.6.20"
|
|
123
126
|
},
|
|
124
127
|
"devDependencies": {
|
|
125
|
-
"@cedarjs/framework-tools": "1.0.0-canary.
|
|
128
|
+
"@cedarjs/framework-tools": "1.0.0-canary.12543",
|
|
126
129
|
"concurrently": "8.2.2",
|
|
127
130
|
"jsdom": "24.1.3",
|
|
128
131
|
"publint": "0.3.12",
|
|
@@ -130,5 +133,5 @@
|
|
|
130
133
|
"typescript": "5.6.2",
|
|
131
134
|
"vitest": "3.2.4"
|
|
132
135
|
},
|
|
133
|
-
"gitHead": "
|
|
136
|
+
"gitHead": "601429c170280f0075029e62902c4c280c5ad302"
|
|
134
137
|
}
|