Skip to content

Commit

Permalink
fix(e2e): remove sauce notifier (uber#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyke authored Oct 8, 2018
1 parent 0442fad commit b8a077a
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 45 deletions.
28 changes: 0 additions & 28 deletions e2e/commands/notifySauceLabs.js

This file was deleted.

1 change: 0 additions & 1 deletion nightwatch.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ module.exports = {
resolve(__dirname, 'node_modules/@gergelyke/nightwatch-vrt/assertions'),
],
custom_commands_path: [
resolve(__dirname, 'e2e/commands'),
resolve(__dirname, 'node_modules/nightwatch-accessibility/commands'),
resolve(__dirname, 'node_modules/@gergelyke/nightwatch-vrt/commands'),
],
Expand Down
4 changes: 0 additions & 4 deletions src/button/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ const {goToUrl, assertVisuals} = require('../../e2e/helpers');
const suite = 'Button Test Suite';

describe('The button component', () => {
afterEach((browser, done) => {
browser.notifySauceLabs(done);
});

after((browser, done) => {
browser.end(() => done());
});
Expand Down
4 changes: 0 additions & 4 deletions src/card/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ const {goToUrl, assertVisuals} = require('../../e2e/helpers');
const suite = 'Card Test Suite';

describe('The card component', () => {
afterEach((browser, done) => {
browser.notifySauceLabs(done);
});

after((browser, done) => {
browser.end(() => done());
});
Expand Down
4 changes: 0 additions & 4 deletions src/checkbox/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ const selectors = {
};

describe('The checkbox component', () => {
afterEach((browser, done) => {
browser.notifySauceLabs(done);
});

after((browser, done) => {
browser.end(() => done());
});
Expand Down
4 changes: 0 additions & 4 deletions src/modal/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ const selectors = {
};

describe('The modal component', () => {
afterEach((browser, done) => {
browser.notifySauceLabs(done);
});

after((browser, done) => {
browser.end(() => done());
});
Expand Down

0 comments on commit b8a077a

Please sign in to comment.