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('segment: basic', async () => {
|
||||
test('segment: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/segment/test/basic?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('segment: modes', async () => {
|
||||
test('segment: modes', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/segment/test/modes?ionic:_testing=true'
|
||||
});
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('segment: standalone', async () => {
|
||||
test('segment: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/segment/test/standalone?ionic:_testing=true'
|
||||
});
|
||||
|
Reference in New Issue
Block a user