Skip to content

Commit

Permalink
chore: tweak examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Dec 9, 2024
1 parent fc158a2 commit cf6c4f5
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions playground/rolldown-dev-mpa/__tests__/basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ import { test } from 'vitest'
import { page } from '../../test-utils'

test('basic', async () => {
await page.goto('/')
await page.getByRole('heading', { name: 'Home' }).click()
await page.getByText('Rendered by /index.js').click()
await page.getByRole('link', { name: 'About' }).click()
await page.waitForURL('/about')
await page.waitForURL(/\/about/)
await page.getByRole('heading', { name: 'About' }).click()
await page.getByText('Rendered by /about/index.js').click()
})
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion playground/rolldown-dev-mpa/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { defineConfig } from 'vite'

export default defineConfig({
clearScreen: false,
root: './src',
environments: {
client: {
build: {
Expand Down

0 comments on commit cf6c4f5

Please sign in to comment.