feat: add end-to-end tests for Agents, Chat, Navigation, and Settings screens
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user