@revisium/admin 2.1.0-alpha.6 → 2.1.0-alpha.7

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/index.html CHANGED
@@ -12,7 +12,7 @@
12
12
  href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
13
13
  rel="stylesheet"
14
14
  />
15
- <script type="module" crossorigin src="/assets/index-CcKiiA-S.js"></script>
15
+ <script type="module" crossorigin src="/assets/index-DBD2RGBE.js"></script>
16
16
  <link rel="stylesheet" crossorigin href="/assets/index-DedtWG-n.css">
17
17
  </head>
18
18
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revisium/admin",
3
- "version": "2.1.0-alpha.6",
3
+ "version": "2.1.0-alpha.7",
4
4
  "description": "Revisium is a tool (UI/API) inspired by JSON (JSON Schema) and Git, designed to provide a flexible and low-level headless CMS solution.",
5
5
  "private": false,
6
6
  "homepage": "https://revisium.io",
@@ -24,6 +24,10 @@
24
24
  "test": "jest",
25
25
  "test:watch": "jest --watch",
26
26
  "test:ci": "jest --detectOpenHandles --ci",
27
+ "test:e2e": "playwright test --config=e2e/playwright.config.ts",
28
+ "test:e2e:ui": "playwright test --config=e2e/playwright.config.ts --ui",
29
+ "test:e2e:debug": "playwright test --config=e2e/playwright.config.ts --debug",
30
+ "test:e2e:report": "playwright show-report",
27
31
  "preview": "vite preview",
28
32
  "prettier": "prettier . --write",
29
33
  "gql:codegen": "graphql-codegen && npm run prettier",
@@ -70,6 +74,7 @@
70
74
  "@graphql-codegen/typescript-graphql-request": "6.2.0",
71
75
  "@graphql-codegen/typescript-operations": "4.2.0",
72
76
  "@graphql-codegen/typescript-react-apollo": "4.3.0",
77
+ "@playwright/test": "1.57.0",
73
78
  "@types/diff": "7.0.2",
74
79
  "@types/jest": "29.5.12",
75
80
  "@types/react": "18.2.64",
@@ -115,6 +120,10 @@
115
120
  ],
116
121
  "rootDir": "./",
117
122
  "testRegex": ".*\\.spec\\.ts$",
123
+ "testPathIgnorePatterns": [
124
+ "/node_modules/",
125
+ "/e2e/"
126
+ ],
118
127
  "transform": {
119
128
  "^.+\\.(t|j)s$": "ts-jest",
120
129
  "^.+\\.(t|j)sx$": "ts-jest"