test(standalone): add e2e files for init on the standalone tests

This commit is contained in:
Brandy Carney
2017-12-08 14:08:33 -05:00
parent 2ebdb366b9
commit 6c302a05c5
36 changed files with 324 additions and 0 deletions

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('action-sheet/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/action-sheet/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('alert/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/alert/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('avatar/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/avatar/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('badge/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/badge/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('button/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/button/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('card/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/card/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('checkbox/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/checkbox/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('chip/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/chip/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('datetime/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/datetime/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('fab/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/fab/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('grid/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/grid/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('icon/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/icon/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('infinite-scroll/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/infinite-scroll/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('input/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/input/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('item-sliding/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/item-sliding/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('item/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/item/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('label/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/label/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('list/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/list/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('loading/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/loading/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('menu/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/menu/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('modal/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/modal/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('popover/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/popover/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('radio-group/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/radio-group/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('radio/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/radio/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('range/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/range/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('reorder/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/reorder/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('searchbar/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/searchbar/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('segment/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/segment/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('select/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/select/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('slides/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/slides/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('spinner/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/spinner/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('textarea/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/textarea/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('thumbnail/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/thumbnail/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('toast/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/toast/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('toggle/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/toggle/test/standalone'));
});

View File

@ -0,0 +1,9 @@
const { register, navigate } = require('../../../../../scripts/e2e');
describe('toolbar/standalone', () => {
register('should init', navigate('http://localhost:3333/src/components/toolbar/test/standalone'));
});