16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
|
|
import { waitForApp, clickByText } from "../helpers/app";
|
||
|
|
|
||
|
|
describe("Log Upload Flow", () => {
|
||
|
|
before(async () => {
|
||
|
|
await waitForApp();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("shows file drop zone on log upload page", async () => {
|
||
|
|
// Navigate to log upload page (after creating an issue)
|
||
|
|
// This test assumes an issue already exists in the test DB
|
||
|
|
const dropZone = await browser.$("[data-testid='drop-zone']");
|
||
|
|
// This is a skeleton test - implement when app is compiled
|
||
|
|
expect(dropZone).toBeDefined();
|
||
|
|
});
|
||
|
|
});
|