Skip to content

Commit

Permalink
test: restore
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Oct 3, 2024
1 parent 7ba013a commit 3af732c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions playground/client-reload/__tests__/client-reload.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ async function testClientReload(serverOptions: ServerOptions) {
// running all tests together is flaky.
// for now, run only the last one with retry.
describe.runIf(isServe)('client-reload', () => {
test.skip('default', async () => {
test('default', async () => {
await testClientReload({
port: ports['client-reload'],
})
})

test.skip('custom hmr port', async () => {
test('custom hmr port', async () => {
await testClientReload({
port: ports['client-reload/hmr-port'],
hmr: {
Expand All @@ -63,7 +63,7 @@ describe.runIf(isServe)('client-reload', () => {
})
})

test('custom hmr port and cross origin isolation', { retry: 2 }, async () => {
test('custom hmr port and cross origin isolation', async () => {
await testClientReload({
port: ports['client-reload/cross-origin'],
hmr: {
Expand Down

0 comments on commit 3af732c

Please sign in to comment.