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:
Cam Wiegert
2018-10-29 12:40:06 -05:00
committed by GitHub
parent ee902e6e98
commit 018fb9876f
129 changed files with 129 additions and 129 deletions

View File

@ -1,6 +1,6 @@
import { newE2EPage } from '@stencil/core/testing';
it('toggle: basic', async () => {
test('toggle: basic', async () => {
const page = await newE2EPage({
url: '/src/components/toggle/test/basic?ionic:_testing=true'
});

View File

@ -1,6 +1,6 @@
import { newE2EPage } from '@stencil/core/testing';
it('toggle: standalone', async () => {
test('toggle: standalone', async () => {
const page = await newE2EPage({
url: '/src/components/toggle/test/standalone?ionic:_testing=true'
});