Skip to content

Commit 21d08f9

Browse files
committed
fix: skip bridge tests, because vue2 and vue-18n v8 no longer support
1 parent fdea711 commit 21d08f9

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

e2e/bridge/basic.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/basic.html`

e2e/bridge/component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/component.html`

e2e/bridge/components/datetime-format.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getText } from '../../helper'
2-
describe(`bridge: datetime format component`, () => {
2+
describe.skip(`bridge: datetime format component`, () => {
33
beforeAll(async () => {
44
await page.goto(
55
`http://localhost:8080/examples/bridge/composition/components/datetime-format.html`

e2e/bridge/components/number-format.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getText } from '../../helper'
2-
describe(`bridge: number format component`, () => {
2+
describe.skip(`bridge: number format component`, () => {
33
beforeAll(async () => {
44
await page.goto(
55
`http://localhost:8080/examples/bridge/composition/components/number-format.html`

e2e/bridge/components/translation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getText } from '../../helper'
2-
describe(`bridge: translation component`, () => {
2+
describe.skip(`bridge: translation component`, () => {
33
beforeAll(async () => {
44
await page.goto(
55
`http://localhost:8080/examples/bridge/composition/components/translation.html`

e2e/bridge/plural.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/plural.html`

e2e/bridge/scope/global.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/scope/global.html`

e2e/bridge/scope/inherit-locale.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/scope/inherit-locale.html`

e2e/bridge/scope/local.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getText } from '../../helper'
22
;['composition', 'legacy'].forEach(pattern => {
3-
describe(`${pattern}`, () => {
3+
describe.skip(`${pattern}`, () => {
44
beforeAll(async () => {
55
await page.goto(
66
`http://localhost:8080/examples/bridge/${pattern}/scope/local.html`

0 commit comments

Comments
 (0)