Files
calchat/apps/client/e2e/tests/01-app-launch.test.ts
Linus Waldowsky 27602aee4c Add E2E testing infrastructure with WebdriverIO + Appium
Set up E2E test framework for Android using WebdriverIO, Appium, and
UiAutomator2. Add testID props to key components (AuthButton, BaseButton,
ChatBubble, CustomTextInput, ProposedEventCard) and apply testIDs to
login screen, chat screen, tab bar, and settings. Include initial tests
for app launch detection and login flow validation. Update CLAUDE.md
with E2E docs.
2026-02-26 21:37:40 +01:00

50 lines
1.6 KiB
TypeScript

import { initDriver, getDriver } from "../helpers/driver";
import { TestIDs } from "../helpers/selectors";
import { waitForTestId } from "../helpers/utils";
describe("App Launch", () => {
beforeAll(async () => {
await initDriver();
const driver = getDriver();
// Dismiss Expo Go banner by tapping near the top of the screen
await driver.pause(3000);
const { width } = await driver.getWindowSize();
await driver.touchAction({ action: "tap", x: Math.round(width / 2), y: 100 });
await driver.pause(500);
});
it("should launch the app and show login or chat screen", async () => {
const driver = getDriver();
// Wait for either the login screen or the chat screen to appear
// Try login first with a long timeout (app needs to fully load)
try {
await waitForTestId(driver, TestIDs.LOGIN_TITLE, 30_000);
// On login screen — verify elements
const identifierInput = await waitForTestId(
driver,
TestIDs.LOGIN_IDENTIFIER_INPUT,
);
expect(await identifierInput.isDisplayed()).toBe(true);
const passwordInput = await waitForTestId(
driver,
TestIDs.LOGIN_PASSWORD_INPUT,
);
expect(await passwordInput.isDisplayed()).toBe(true);
const loginButton = await waitForTestId(driver, TestIDs.LOGIN_BUTTON);
expect(await loginButton.isDisplayed()).toBe(true);
} catch {
// Not on login — should be on chat screen (auto-login)
const chatInput = await waitForTestId(
driver,
TestIDs.CHAT_MESSAGE_INPUT,
30_000,
);
expect(await chatInput.isDisplayed()).toBe(true);
}
});
});