@akanjs/test 0.0.85 → 0.0.86
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/package.json +6 -2
- package/{src/playwright.config.base.js → playwright.config.base.js} +1 -1
- package/{src/playwright.config.base.mjs → playwright.config.base.mjs} +1 -1
- /package/{src/playwright.config.base.d.ts → playwright.config.base.d.ts} +0 -0
- /package/{src/playwright.pageAgent.d.ts → playwright.pageAgent.d.ts} +0 -0
- /package/{src/playwright.pageAgent.js → playwright.pageAgent.js} +0 -0
- /package/{src/playwright.pageAgent.mjs → playwright.pageAgent.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.86",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
"./jest.setupFilesAfterEnv": {
|
|
50
50
|
"require": "./jest.setupFilesAfterEnv.js",
|
|
51
51
|
"import": "./jest.setupFilesAfterEnv.mjs"
|
|
52
|
+
},
|
|
53
|
+
"./playwright.config.base": {
|
|
54
|
+
"require": "./playwright.config.base.js",
|
|
55
|
+
"import": "./playwright.config.base.mjs"
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
|
-
}
|
|
58
|
+
}
|
|
@@ -33,7 +33,7 @@ const withBase = (filename, config = {}) => (0, import_test.defineConfig)({
|
|
|
33
33
|
},
|
|
34
34
|
/* Run your local dev server before starting the tests */
|
|
35
35
|
webServer: {
|
|
36
|
-
command: `
|
|
36
|
+
command: `akan serve ${projectName}`,
|
|
37
37
|
url: "http://127.0.0.1:4200",
|
|
38
38
|
reuseExistingServer: !process.env.CI
|
|
39
39
|
// cwd: workspaceRoot,
|
|
@@ -11,7 +11,7 @@ const withBase = (filename, config = {}) => defineConfig({
|
|
|
11
11
|
},
|
|
12
12
|
/* Run your local dev server before starting the tests */
|
|
13
13
|
webServer: {
|
|
14
|
-
command: `
|
|
14
|
+
command: `akan serve ${projectName}`,
|
|
15
15
|
url: "http://127.0.0.1:4200",
|
|
16
16
|
reuseExistingServer: !process.env.CI
|
|
17
17
|
// cwd: workspaceRoot,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|