mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-13 22:30:41 +08:00
10 lines
228 B
JavaScript
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();
|
|
});
|