feat: add end-to-end tests for Agents, Chat, Navigation, and Settings screens

This commit is contained in:
Jonathan Atta
2026-03-03 14:47:44 +01:00
parent 41c7634b75
commit a213b1593a
11 changed files with 363 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
const { navigatePastSplash } = require('./helpers');
describe('App basic e2e', () => {
beforeAll(async () => {
await device.launchApp({ newInstance: true });
@@ -16,4 +18,10 @@ describe('App basic e2e', () => {
.toBeVisible()
.withTimeout(10000);
});
it('shows the Models sub-tabs after landing', async () => {
await waitFor(element(by.text('Modèles locaux')).atIndex(0))
.toBeVisible()
.withTimeout(5000);
});
});