@genesislcap/foundation-login 14.24.1 → 14.24.2-alpha-1a5d656.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/package.json +8 -8
- package/playwright.config.ts +2 -27
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-login",
|
|
3
3
|
"description": "Genesis Foundation Login",
|
|
4
|
-
"version": "14.24.
|
|
4
|
+
"version": "14.24.2-alpha-1a5d656.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-login.d.ts",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"test:unit:watch": "watchlist src test -- npm run test:unit"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@genesislcap/foundation-testing": "
|
|
52
|
-
"@genesislcap/genx": "
|
|
51
|
+
"@genesislcap/foundation-testing": "14.24.2-alpha-1a5d656.0",
|
|
52
|
+
"@genesislcap/genx": "14.24.2-alpha-1a5d656.0",
|
|
53
53
|
"@module-federation/dashboard-plugin": "2.3.0",
|
|
54
54
|
"@pixability-ui/federated-types": "^0.2.0",
|
|
55
55
|
"@playwright/test": "^1.18.1",
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
"webpack-merge": "^5.7.3"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@genesislcap/foundation-comms": "
|
|
93
|
-
"@genesislcap/foundation-ui": "
|
|
94
|
-
"@genesislcap/foundation-utils": "
|
|
95
|
-
"@genesislcap/foundation-zero": "
|
|
92
|
+
"@genesislcap/foundation-comms": "14.24.2-alpha-1a5d656.0",
|
|
93
|
+
"@genesislcap/foundation-ui": "14.24.2-alpha-1a5d656.0",
|
|
94
|
+
"@genesislcap/foundation-utils": "14.24.2-alpha-1a5d656.0",
|
|
95
|
+
"@genesislcap/foundation-zero": "14.24.2-alpha-1a5d656.0",
|
|
96
96
|
"@microsoft/fast-components": "^2.21.3",
|
|
97
97
|
"@microsoft/fast-element": "^1.7.0",
|
|
98
98
|
"@microsoft/fast-foundation": "^2.33.2",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
111
111
|
"customElements": "dist/custom-elements.json",
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "92229173bfec02c431797fcf9c19ffe09f246754"
|
|
113
113
|
}
|
package/playwright.config.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { configDefaults } from '@genesislcap/foundation-testing/e2e';
|
|
1
2
|
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -8,33 +9,7 @@ import type { TestFixture as LoginFixture } from './test/e2e';
|
|
|
8
9
|
type Fixtures = LoginFixture & {}; // < and several others if this was app level
|
|
9
10
|
|
|
10
11
|
const config: PlaywrightTestConfig<Fixtures> = {
|
|
11
|
-
|
|
12
|
-
globalSetup: '@genesislcap/foundation-testing/playwright', // returns teardown
|
|
13
|
-
/**
|
|
14
|
-
* We might create a discreet project per mf, or an entire config per mf, will know soon enough...
|
|
15
|
-
*/
|
|
16
|
-
projects: [
|
|
17
|
-
{
|
|
18
|
-
name: 'Chrome Stable',
|
|
19
|
-
use: {
|
|
20
|
-
browserName: 'chromium',
|
|
21
|
-
channel: 'chrome',
|
|
22
|
-
ignoreHTTPSErrors: true,
|
|
23
|
-
/**
|
|
24
|
-
* We should be able to use these 'use' blocks at the App level to provide config data to our micro frontends.
|
|
25
|
-
* This might include what backend to run against, what username password combo to use etc.
|
|
26
|
-
*
|
|
27
|
-
* config: AppLevelPkgConfig;
|
|
28
|
-
*/
|
|
29
|
-
// config: {
|
|
30
|
-
// API_HOST: 'wss://dev-foundation1/gwf/',
|
|
31
|
-
// DEFAULT_USER: 'Derek',
|
|
32
|
-
// DEFAULT_PASSWORD: 'Paul',
|
|
33
|
-
// PORT: 5030,
|
|
34
|
-
// },
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
],
|
|
12
|
+
...configDefaults,
|
|
38
13
|
webServer: {
|
|
39
14
|
command: 'npm run dev:no-open',
|
|
40
15
|
url: 'http://localhost:5030/',
|