mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +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('thumbnail: basic', async () => {
|
||||
test('thumbnail: basic', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/thumbnail/test/basic'
|
||||
});
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
it('thumbnail: standalone', async () => {
|
||||
test('thumbnail: standalone', async () => {
|
||||
const page = await newE2EPage({
|
||||
url: '/src/components/thumbnail/test/standalone'
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user