Update E2E tests for model import and placement

This commit is contained in:
2026-04-03 00:44:44 +02:00
parent ed4f566d29
commit e68438083d
2 changed files with 15 additions and 7 deletions

View File

@@ -28,10 +28,13 @@ test("imports a draco-compressed glb asset, places an instance, and survives rel
await page.locator('input[type="file"][accept*="gltf"]').setInputFiles(fixturePath);
await expect(page.getByTestId("asset-list").getByText("tiny-triangle-draco.glb", { exact: true })).toBeVisible();
await expect(page.getByTestId("outliner-model-instance-list").getByRole("button")).toHaveCount(1);
await page.getByRole("button", { name: "Place instance for tiny-triangle-draco.glb" }).click();
await page.getByTestId("outliner-add-button").click();
await page.getByTestId("add-menu-assets").click();
await page.getByTestId("add-menu-assets-models").click();
await expect(page.getByRole("button", { name: "tiny-triangle-draco.glb" })).toBeVisible();
await page.getByRole("button", { name: "tiny-triangle-draco.glb" }).click();
const importedSnapshot = await getEditorStoreSnapshot(page);
const importedModelAsset = Object.values(importedSnapshot.document.assets).find(
(asset) => asset.kind === "model" && asset.sourceName === "tiny-triangle-draco.glb"
@@ -71,7 +74,10 @@ test("imports a draco-compressed glb asset, places an instance, and survives rel
await page.reload();
await expect(page.getByTestId("asset-list").getByText("tiny-triangle-draco.glb", { exact: true })).toBeVisible();
await page.getByTestId("outliner-add-button").click();
await page.getByTestId("add-menu-assets").click();
await page.getByTestId("add-menu-assets-models").click();
await expect(page.getByRole("button", { name: "tiny-triangle-draco.glb" })).toBeVisible();
await expect(page.getByTestId("outliner-model-instance-list").getByRole("button")).toHaveCount(2);
await expect(page.getByTestId("asset-status-message")).toHaveCount(0);

View File

@@ -29,13 +29,15 @@ test("imports a gltf asset with external resources and places an instance", asyn
await page.locator('input[type="file"][accept*="gltf"]').setInputFiles([gltfFixturePath, binFixturePath]);
await expect(page.getByTestId("asset-list").getByText("scene.gltf", { exact: true })).toBeVisible();
await expect(page.getByTestId("asset-list")).not.toContainText("Storage key:");
await expect(page.getByTestId("outliner-model-instance-list").getByRole("button")).toHaveCount(1);
await page.getByRole("button", { name: "Place instance for scene.gltf" }).hover();
await page.getByTestId("outliner-add-button").click();
await page.getByTestId("add-menu-assets").click();
await page.getByTestId("add-menu-assets-models").click();
await expect(page.getByRole("button", { name: "scene.gltf" })).toBeVisible();
await page.getByRole("button", { name: "scene.gltf" }).hover();
await expect(page.getByTestId("status-asset-hover")).toContainText("Storage key:");
await page.getByRole("button", { name: "Place instance for scene.gltf" }).click();
await page.getByRole("button", { name: "scene.gltf" }).click();
const importedSnapshot = await getEditorStoreSnapshot(page);
const importedModelAsset = Object.values(importedSnapshot.document.assets).find(
(asset) => asset.kind === "model" && asset.sourceName === "scene.gltf"