Skip to content

Commit

Permalink
messaging の e2e test 一部有効にしてみる
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Mar 17, 2024
1 parent f6da049 commit 5ce42e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/e2ee/main.mts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Sora, {
type SoraConnection,
type SignalingNotifyMessage,
ConnectionPublisher,
type ConnectionPublisher,
} from '../../dist/sora'

document.addEventListener('DOMContentLoaded', async () => {
Expand Down
2 changes: 1 addition & 1 deletion examples/messaging/main.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Sora, {
type SoraConnection,
type ConnectionSubscriber,
type SignalingNotifyMessage,
DataChannelMessageEvent,
type DataChannelMessageEvent,
} from '../../dist/sora'

document.addEventListener('DOMContentLoaded', async () => {
Expand Down
2 changes: 2 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { defineConfig, devices } from '@playwright/test'

// pnpm exec playwright test --ui

export default defineConfig({
testDir: 'tests',
// fullyParallel: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/messaging.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.skip('messaging pages', async ({ browser }) => {
test('messaging pages', async ({ browser }) => {
// 新しいページを2つ作成
const page1 = await browser.newPage()
const page2 = await browser.newPage()
Expand Down

0 comments on commit 5ce42e8

Please sign in to comment.