as-app/e2e/firstTest.e2e.js
2026-01-12 18:27:57 +01:00

13 lines
314 B
JavaScript

describe("App Initialization", () => {
beforeAll(async () => {
await device.launchApp({ newInstance: true });
});
beforeEach(async () => {
await device.reloadReactNative();
});
it("should have main layout", async () => {
await expect(element(by.id("main-layout"))).toBeVisible();
});
});