@jskit-ai/create-app 0.1.144 → 0.1.146
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.146",
|
|
4
4
|
"description": "Scaffold JSKIT app shells.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./client": "./src/client/index.js"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@jskit-ai/jskit-cli": "0.2.
|
|
23
|
+
"@jskit-ai/jskit-cli": "0.2.149"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": "^22.12.0 || ^24.0.0 || ^26.0.0"
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { expect, test } from "@playwright/test";
|
|
2
|
-
import {
|
|
2
|
+
import { DEFAULT_VIEWPORTS, runAdaptiveShellSmokeCase } from "@jskit-ai/shell-web/test/adaptiveShellSmoke";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
test.describe("generated adaptive shell smoke", () => {
|
|
5
|
+
for (const viewport of DEFAULT_VIEWPORTS) {
|
|
6
|
+
test(`${viewport.name} layout has reachable navigation and no horizontal overflow`, async ({ page }) => {
|
|
7
|
+
await runAdaptiveShellSmokeCase({ page, expect, viewport });
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
});
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { expect, test } from "@playwright/test";
|
|
2
|
-
import {
|
|
2
|
+
import { DEFAULT_VIEWPORTS, runGeneratedAppSmokeCase } from "@jskit-ai/jskit-cli/test/playwright";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
test.describe("generated app responsive smoke", () => {
|
|
5
|
+
for (const viewport of DEFAULT_VIEWPORTS) {
|
|
6
|
+
test(`${viewport.name} home route renders without horizontal overflow`, async ({ page }) => {
|
|
7
|
+
await runGeneratedAppSmokeCase({ page, expect, expectedText: "Ready", viewport });
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
});
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { expect, test } from "@playwright/test";
|
|
2
|
-
import {
|
|
2
|
+
import { DEFAULT_VIEWPORTS, runGeneratedAppSmokeCase } from "@jskit-ai/jskit-cli/test/playwright";
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
test.describe("generated app responsive smoke", () => {
|
|
5
|
+
for (const viewport of DEFAULT_VIEWPORTS) {
|
|
6
|
+
test(`${viewport.name} home route renders without horizontal overflow`, async ({ page }) => {
|
|
7
|
+
await runGeneratedAppSmokeCase({ page, expect, expectedText: "Home base", viewport });
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
});
|