Created
August 7, 2018 06:13
-
-
Save adamrecsko/c8c25301e1ea0c273ae25b7011cdc723 to your computer and use it in GitHub Desktop.
test structure
This file contains 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('Test Suite name', () => { | |
// page objects and services | |
let login: Login; | |
beforeEach(async () => {}); | |
afterEach(async () => {}); | |
it('should ....', async () => { | |
}); | |
it('should ...', async () => { | |
expect(...); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment