Skip to content

Instantly share code, notes, and snippets.

@adamrecsko
Created August 7, 2018 06:13
Show Gist options
  • Save adamrecsko/c8c25301e1ea0c273ae25b7011cdc723 to your computer and use it in GitHub Desktop.
Save adamrecsko/c8c25301e1ea0c273ae25b7011cdc723 to your computer and use it in GitHub Desktop.
test structure
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