alerte-secours/app/e2e/firstTest.e2e.js
devthejo 3e56818c1d chore(to-monorepo): import as-app repo into app
git-subtree-dir: app
git-subtree-mainline: b28b08a80b
git-subtree-split: a6c3dc2641
2026-03-09 08:54: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();
});
});