@genesislcap/foundation-entity-management 14.24.0 → 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.
Files changed (2) hide show
  1. package/package.json +13 -13
  2. package/playwright.config.ts +2 -27
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-entity-management",
3
3
  "description": "Genesis Foundation Entity Management",
4
- "version": "14.24.0",
4
+ "version": "14.24.2-alpha-1a5d656.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -39,8 +39,8 @@
39
39
  "test:unit:watch": "watchlist src test -- npm run test:unit"
40
40
  },
41
41
  "devDependencies": {
42
- "@genesislcap/foundation-testing": "^14.24.0",
43
- "@genesislcap/genx": "^14.24.0",
42
+ "@genesislcap/foundation-testing": "14.24.2-alpha-1a5d656.0",
43
+ "@genesislcap/genx": "14.24.2-alpha-1a5d656.0",
44
44
  "@playwright/test": "^1.18.1",
45
45
  "bulma": "^0.9.3",
46
46
  "c8": "^7.11.0",
@@ -81,15 +81,15 @@
81
81
  "webpack-merge": "^5.7.3"
82
82
  },
83
83
  "dependencies": {
84
- "@genesislcap/foundation-comms": "^14.24.0",
85
- "@genesislcap/foundation-errors": "^14.24.0",
86
- "@genesislcap/foundation-forms": "^14.24.0",
87
- "@genesislcap/foundation-login": "^14.24.0",
88
- "@genesislcap/foundation-ui": "^14.24.0",
89
- "@genesislcap/foundation-utils": "^14.24.0",
90
- "@genesislcap/foundation-zero": "^14.24.0",
91
- "@genesislcap/foundation-zero-grid-pro": "^14.24.0",
92
- "@genesislcap/grid-pro": "^14.24.0",
84
+ "@genesislcap/foundation-comms": "14.24.2-alpha-1a5d656.0",
85
+ "@genesislcap/foundation-errors": "14.24.2-alpha-1a5d656.0",
86
+ "@genesislcap/foundation-forms": "14.24.2-alpha-1a5d656.0",
87
+ "@genesislcap/foundation-login": "14.24.2-alpha-1a5d656.0",
88
+ "@genesislcap/foundation-ui": "14.24.2-alpha-1a5d656.0",
89
+ "@genesislcap/foundation-utils": "14.24.2-alpha-1a5d656.0",
90
+ "@genesislcap/foundation-zero": "14.24.2-alpha-1a5d656.0",
91
+ "@genesislcap/foundation-zero-grid-pro": "14.24.2-alpha-1a5d656.0",
92
+ "@genesislcap/grid-pro": "14.24.2-alpha-1a5d656.0",
93
93
  "@microsoft/fast-components": "^2.21.3",
94
94
  "@microsoft/fast-element": "^1.7.0",
95
95
  "@microsoft/fast-foundation": "^2.33.2",
@@ -114,5 +114,5 @@
114
114
  "access": "public"
115
115
  },
116
116
  "customElements": "dist/custom-elements.json",
117
- "gitHead": "94a3b388d39d65f0376bb347238a4151b3cfdd09"
117
+ "gitHead": "92229173bfec02c431797fcf9c19ffe09f246754"
118
118
  }
@@ -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 EntityManagementFixture } from './test/e2e';
8
9
  type Fixtures = EntityManagementFixture & {}; // < and several others if this was app level
9
10
 
10
11
  const config: PlaywrightTestConfig<Fixtures> = {
11
- testMatch: '**/*.e2e.ts',
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:5080/',