Last active
August 22, 2017 09:49
-
-
Save mfrachet/f80cc688d7d557efab3fae30c4cfcb25 to your computer and use it in GitHub Desktop.
detox-describe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('Example', () => { | |
beforeEach(async () => { | |
await device.reloadReactNative(); | |
}); | |
describe('Test describe block', () => { | |
it('should make something great', async () => { | |
// core of the async test | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment