Files
react-navigation/example/e2e/__integration_tests__/index.test.js
2020-01-07 05:14:04 +01:00

10 lines
228 B
JavaScript

import { by, element, expect, device } from 'detox';
beforeEach(async () => {
await device.reloadReactNative();
});
it('has dark theme toggle', async () => {
await expect(element(by.text('Dark theme'))).toBeVisible();
});