mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
chore(e2e) rename tests to match v3 master (#13609)
This commit is contained in:
@ -148,7 +148,7 @@ if (require.main === module) {
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
Page,
|
Page,
|
||||||
navigate: url => driver => new Page(driver, url).navigate(),
|
navigate: (url, tagName) => driver => new Page(driver, url).navigate(tagName),
|
||||||
register: registerE2ETest,
|
register: registerE2ETest,
|
||||||
run: run
|
run: run
|
||||||
};
|
};
|
||||||
|
@ -8,10 +8,10 @@ module.exports = class E2ETestPage {
|
|||||||
this.driver = driver;
|
this.driver = driver;
|
||||||
}
|
}
|
||||||
|
|
||||||
navigate() {
|
navigate(tagName = '') {
|
||||||
this.driver.navigate().to(this.url);
|
this.driver.navigate().to(this.url);
|
||||||
this.driver.wait(until.elementLocated(By.css('.hydrated')));
|
this.driver.wait(until.elementLocated(By.css('.hydrated')));
|
||||||
return this.driver.wait(until.elementIsVisible(this.driver.findElement(By.css('.hydrated'))));
|
return this.driver.wait(until.elementIsVisible(this.driver.findElement(By.css(`${tagName}.hydrated`))));
|
||||||
}
|
}
|
||||||
|
|
||||||
present(clickTarget, options) {
|
present(clickTarget, options) {
|
||||||
|
@ -16,8 +16,8 @@ class ActionSheetE2ETestPage extends Page {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('action-sheet: basic', () => {
|
describe('action-sheet/basic', () => {
|
||||||
register('navigates', driver => {
|
register('should init', driver => {
|
||||||
const page = new ActionSheetE2ETestPage(driver);
|
const page = new ActionSheetE2ETestPage(driver);
|
||||||
return page.navigate();
|
return page.navigate();
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('badge: basic', () => {
|
describe('badge/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/badge/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/badge/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: anchor', () => {
|
describe('button/anchor', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/anchor'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/anchor'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: basic', () => {
|
describe('button/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: expand', () => {
|
describe('button/expand', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/expand'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/expand'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: fill', () => {
|
describe('button/fill', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/fill'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/fill'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: icon', () => {
|
describe('button/icon', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/icon'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/icon'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: round', () => {
|
describe('button/round', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/round'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/round'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: size', () => {
|
describe('button/size', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/size'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/size'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: strong', () => {
|
describe('button/strong', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/strong'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/strong'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('button: toolbar', () => {
|
describe('button/toolbar', () => {
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/button/test/toolbar'));
|
register('should init', navigate('http://localhost:3333/src/components/button/test/toolbar'));
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('card: basic', () => {
|
describe('card/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/card/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/card/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('checkbox: basic', () => {
|
describe('checkbox/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/checkbox/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/checkbox/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('chip: basic', () => {
|
describe('chip/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/chip/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/chip/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('content: basic', () => {
|
describe('content/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/content/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/content/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('datetime: basic', () => {
|
describe('datetime/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/datetime/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/datetime/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('fab: basic', () => {
|
describe('fab/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/fab/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/fab/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('grid: basic', () => {
|
describe('grid/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/grid/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/grid/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('icon: basic', () => {
|
describe('icon/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/icon/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/icon/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('icon: items', () => {
|
describe('icon/items', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/icon/test/items'));
|
register('should init', navigate('http://localhost:3333/src/components/icon/test/items'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('inifinite-scroll: basic', () => {
|
describe('inifinite-scroll/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/infinite-scroll/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/infinite-scroll/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('input: basic', () => {
|
describe('input/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/input/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/input/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('item-sliding: basic', () => {
|
describe('item-sliding/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/item-sliding/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/item-sliding/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('item: basic', () => {
|
describe('item/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/item/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/item/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('item: buttons', () => {
|
describe('item/buttons', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/item/test/buttons'));
|
register('should init', navigate('http://localhost:3333/src/components/item/test/buttons'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('list: basic', () => {
|
describe('list/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/list/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/list/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
||||||
const testPageURL = 'http://localhost:3333/src/components/loading/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/loading/test/basic';
|
||||||
|
|
||||||
describe('loading: basic', () => {
|
describe('loading/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
||||||
const testPageURL = 'http://localhost:3333/src/components/menu/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/menu/test/basic';
|
||||||
|
|
||||||
describe('menu: basic', () => {
|
describe('menu/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
||||||
const testPageURL = 'http://localhost:3333/src/components/modal/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/modal/test/basic';
|
||||||
|
|
||||||
describe('modal: basic', () => {
|
describe('modal/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('nav: basic', () => {
|
describe('nav/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/nav/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/nav/test/basic', 'ion-nav'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -2,9 +2,9 @@ const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
|||||||
const testPageURL = 'http://localhost:3333/src/components/popover/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/popover/test/basic';
|
||||||
|
|
||||||
|
|
||||||
describe('popover: basic', () => {
|
describe('popover/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('radio: basic', () => {
|
describe('radio/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/radio/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/radio/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('range: basic', () => {
|
describe('range/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/range/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/range/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('reorder: basic', () => {
|
describe('reorder/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/reorder/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/reorder/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('searchbar: basic', () => {
|
describe('searchbar/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/searchbar/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/searchbar/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('segment: basic', () => {
|
describe('segment/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/segment/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/segment/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
||||||
const testPageURL = 'http://localhost:3333/src/components/select/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/select/test/basic';
|
||||||
|
|
||||||
describe('select: basic', () => {
|
describe('select/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('slides: basic', () => {
|
describe('slides/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/slides/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/slides/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('spinner: basic', () => {
|
describe('spinner/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/spinner/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/spinner/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('spinner: color', () => {
|
describe('spinner/color', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/spinner/test/color'));
|
register('should init', navigate('http://localhost:3333/src/components/spinner/test/color'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('split-pane: basic', () => {
|
describe('split-pane/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/split-pane/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/split-pane/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('tabs: basic', () => {
|
describe('tabs/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/tabs/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/tabs/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('textarea: basic', () => {
|
describe('textarea/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/textarea/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/textarea/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
const { register, navigate, Page } = require('../../../../../scripts/e2e');
|
||||||
const testPageURL = 'http://localhost:3333/src/components/toast/test/basic';
|
const testPageURL = 'http://localhost:3333/src/components/toast/test/basic';
|
||||||
|
|
||||||
describe('toast: basic', () => {
|
describe('toast/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate(testPageURL));
|
register('should init', navigate(testPageURL));
|
||||||
|
|
||||||
describe('present', () => {
|
describe('present', () => {
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('toggle: basic', () => {
|
describe('toggle/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/toggle/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/toggle/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const { register, navigate } = require('../../../../../scripts/e2e');
|
const { register, navigate } = require('../../../../../scripts/e2e');
|
||||||
|
|
||||||
describe('toolbar: basic', () => {
|
describe('toolbar/basic', () => {
|
||||||
|
|
||||||
register('navigates', navigate('http://localhost:3333/src/components/toolbar/test/basic'));
|
register('should init', navigate('http://localhost:3333/src/components/toolbar/test/basic'));
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user