mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
test(all): use test() instead of it() where appropriate (#16129)
This replaces uses of Jest's it() function in end-to-end tests with the alias test() where it makes sense semantically.
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: alertFromActionSheet', async () => {
|
||||
test('action-sheet: alertFromActionSheet', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/alert-from-action-sheet?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: basic', async () => {
|
||||
test('action-sheet: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/basic?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: cancelOnly', async () => {
|
||||
test('action-sheet: cancelOnly', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/cancel-only?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: cssClass', async () => {
|
||||
test('action-sheet: cssClass', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/custom-css?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: icons', async () => {
|
||||
test('action-sheet: icons', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/icons?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: noBackdropDismiss', async () => {
|
||||
test('action-sheet: noBackdropDismiss', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/no-backdrop-dismiss?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: scrollWithoutCancel', async () => {
|
||||
test('action-sheet: scrollWithoutCancel', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/scroll-without-cancel?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('action-sheet: scrollableOptions', async () => {
|
||||
test('action-sheet: scrollableOptions', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: `/src/components/action-sheet/test/scrollable-options?ionic:_testing=true`
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('alert: basic', async () => {
|
||||
test('alert: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/alert/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('alert: standalone', async () => {
|
||||
test('alert: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/alert/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('avatar: standalone', async () => {
|
||||
test('avatar: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/avatar/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('badge: basic', async () => {
|
||||
test('badge: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/badge/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('badge: standalone', async () => {
|
||||
test('badge: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/badge/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: anchor', async () => {
|
||||
test('button: anchor', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/anchor?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: basic', async () => {
|
||||
test('button: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: clear', async () => {
|
||||
test('button: clear', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/clear?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: expand', async () => {
|
||||
test('button: expand', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/expand?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: icon', async () => {
|
||||
test('button: icon', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/icon?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: outline', async () => {
|
||||
test('button: outline', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/outline?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: round', async () => {
|
||||
test('button: round', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/round?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: size', async () => {
|
||||
test('button: size', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/size?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: standalone', async () => {
|
||||
test('button: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: strong', async () => {
|
||||
test('button: strong', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/strong?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('button: toolbar', async () => {
|
||||
test('button: toolbar', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/button/test/toolbar?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('card-header: basic', async () => {
|
||||
test('card-header: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/card-header/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('card: basic', async () => {
|
||||
test('card: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/card/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('card: standalone', async () => {
|
||||
test('card: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/card/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('checkbox: basic', async () => {
|
||||
test('checkbox: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/checkbox/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('checkbox: standalone', async () => {
|
||||
test('checkbox: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/checkbox/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('chip: basic', async () => {
|
||||
test('chip: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/chip/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('chip: standalone', async () => {
|
||||
test('chip: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/chip/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('content: basic', async () => {
|
||||
test('content: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/content/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('content: fullscreen', async () => {
|
||||
test('content: fullscreen', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/content/test/fullscreen?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('content: standalone', async () => {
|
||||
test('content: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/content/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('datetime: basic', async () => {
|
||||
test('datetime: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/datetime/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('datetime: standalone', async () => {
|
||||
test('datetime: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/datetime/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('fab-button: standalone', async () => {
|
||||
test('fab-button: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/fab-button/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('fab: basic', async () => {
|
||||
test('fab: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/fab/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('fab: standalone', async () => {
|
||||
test('fab: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/fab/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('grid: basic', async () => {
|
||||
test('grid: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/grid/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('grid: offsets', async () => {
|
||||
test('grid: offsets', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/grid/test/offsets?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('grid: padding', async () => {
|
||||
test('grid: padding', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/grid/test/padding?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('grid: sizes', async () => {
|
||||
test('grid: sizes', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/grid/test/sizes?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('grid: standalone', async () => {
|
||||
test('grid: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/grid/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('icon: basic', async () => {
|
||||
test('icon: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/icon/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('icon: items', async () => {
|
||||
test('icon: items', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/icon/test/items?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('icon: standalone', async () => {
|
||||
test('icon: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/icon/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('img: basic', async () => {
|
||||
test('img: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/img/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('img: standalone', async () => {
|
||||
test('img: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/img/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('infinite-scroll: basic', async () => {
|
||||
test('infinite-scroll: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/infinite-scroll/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('infinite-scroll: standalone', async () => {
|
||||
test('infinite-scroll: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/infinite-scroll/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('infinite-scroll: basic', async () => {
|
||||
test('infinite-scroll: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/infinite-scroll/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('input: basic', async () => {
|
||||
test('input: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/input/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('input: standalone', async () => {
|
||||
test('input: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/input/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item-sliding: basic', async () => {
|
||||
test('item-sliding: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item-sliding/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item-sliding: standalone', async () => {
|
||||
test('item-sliding: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item-sliding/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: basic', async () => {
|
||||
test('item: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: buttons', async () => {
|
||||
test('item: buttons', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/buttons?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: colors', async () => {
|
||||
test('item: colors', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/colors?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: dividers', async () => {
|
||||
test('item: dividers', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/dividers?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: groups', async () => {
|
||||
test('item: groups', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/groups?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: icons', async () => {
|
||||
test('item: icons', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/icons?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: images', async () => {
|
||||
test('item: images', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/images?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: inputs', async () => {
|
||||
test('item: inputs', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/inputs?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: lines', async () => {
|
||||
test('item: lines', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/lines?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: media', async () => {
|
||||
test('item: media', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/media?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: reorder', async () => {
|
||||
test('item: reorder', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/reorder?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: sliding', async () => {
|
||||
test('item: sliding', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/sliding?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: standalone', async () => {
|
||||
test('item: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('item: text', async () => {
|
||||
test('item: text', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/item/test/text?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('label: basic', async () => {
|
||||
test('label: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/label/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('label: standalone', async () => {
|
||||
test('label: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/label/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('list: basic', async () => {
|
||||
test('list: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/list/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('list: inset', async () => {
|
||||
test('list: inset', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/list/test/inset?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('list: lines', async () => {
|
||||
test('list: lines', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/list/test/lines?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('list: standalone', async () => {
|
||||
test('list: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/list/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('loading: basic', async () => {
|
||||
test('loading: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/loading/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('loading: standalone', async () => {
|
||||
test('loading: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/loading/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('menu-button: standalone', async () => {
|
||||
test('menu-button: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/menu-button/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('modal: basic', async () => {
|
||||
test('modal: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/modal/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('modal: standalone', async () => {
|
||||
test('modal: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/modal/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -2,7 +2,7 @@ import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
const navChanged = () => new Promise(resolve => window.addEventListener('ionNavDidChange', resolve));
|
||||
|
||||
it('nav: basic', async () => {
|
||||
test('nav: basic', async () => {
|
||||
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/nav/test/basic?ionic:_testing=true'
|
||||
|
@ -3,7 +3,7 @@ import { newE2EPage } from '@stencil/core/testing';
|
||||
const navChanged = () => new Promise(resolve => window.addEventListener('ionNavDidChange', resolve));
|
||||
|
||||
// TODO: get this to pass
|
||||
it.skip('nav: nested', async () => {
|
||||
test.skip('nav: nested', async () => {
|
||||
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/nav/test/nested?ionic:_testing=true'
|
||||
|
@ -2,7 +2,7 @@ import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
const navChanged = () => new Promise(resolve => window.addEventListener('ionRouteDidChange', resolve));
|
||||
|
||||
it('nav: routing', async () => {
|
||||
test('nav: routing', async () => {
|
||||
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/nav/test/routing?ionic:_testing=true'
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('note: basic', async () => {
|
||||
test('note: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/note/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('note: standalone', async () => {
|
||||
test('note: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/note/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('popover: basic', async () => {
|
||||
test('popover: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/popover/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('popover: standalone', async () => {
|
||||
test('popover: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/popover/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('radio-group: standalone', async () => {
|
||||
test('radio-group: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/radio-group/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('radio: basic', async () => {
|
||||
test('radio: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/radio/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('radio: standalone', async () => {
|
||||
test('radio: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/radio/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('range: basic', async () => {
|
||||
test('range: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/range/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('range: standalone', async () => {
|
||||
test('range: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/range/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('refresher: basic', async () => {
|
||||
test('refresher: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/refresher/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('reorder: basic', async () => {
|
||||
test('reorder: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/reorder-group/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('reorder: standalone', async () => {
|
||||
test('reorder: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/reorder-group/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('searchbar: basic', async () => {
|
||||
test('searchbar: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/searchbar/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('searchbar: standalone', async () => {
|
||||
test('searchbar: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/searchbar/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('searchbar: toolbar', async () => {
|
||||
test('searchbar: toolbar', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/searchbar/test/toolbar?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('segment: basic', async () => {
|
||||
test('segment: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/segment/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user