Skip to content

Commit

Permalink
only 外す
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Feb 22, 2024
1 parent 14eaac4 commit 4e07ef4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/sendonly_recvonly.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.only('sendonly/recvonly pages', async ({ browser }) => {
test('sendonly/recvonly pages', async ({ browser }) => {
// 新しいページを2つ作成
const page1 = await browser.newPage()
const page2 = await browser.newPage()
Expand Down
2 changes: 1 addition & 1 deletion tests/sendrecv.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.only('sendrecv x2', async ({ page }) => {
test('sendrecv x2', async ({ page }) => {
await page.goto('http://localhost:9000/sendrecv/')

await page.click('#start-sendrecv1')
Expand Down
2 changes: 1 addition & 1 deletion tests/simulcast.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.only('simulcast sendonly/recvonly pages', async ({ page }) => {
test('simulcast sendonly/recvonly pages', async ({ page }) => {
await page.goto('http://localhost:9000/simulcast/')

await page.click('#start')
Expand Down
2 changes: 1 addition & 1 deletion tests/spotlight_sendonly_recvonly.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.only('spotlight sendonly/recvonly pages', async ({ browser }) => {
test('spotlight sendonly/recvonly pages', async ({ browser }) => {
// 新しいページを2つ作成
const page1 = await browser.newPage()
const page2 = await browser.newPage()
Expand Down
2 changes: 1 addition & 1 deletion tests/spotlight_sendrecv.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from '@playwright/test'

test.only('spotlight sendrecv x2', async ({ page }) => {
test('spotlight sendrecv x2', async ({ page }) => {
await page.goto('http://localhost:9000/spotlight_sendrecv/')

await page.click('#start-sendrecv1')
Expand Down

0 comments on commit 4e07ef4

Please sign in to comment.