Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"!**/.venv",
"!**/coverage",
"!**/bun.lock",
"!tests/fixtures/react/index.html"
"!fixtures/react/index.html"
]
}
}
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/render/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ describe('getRenderedContent', () => {

beforeAll(async () => {
browser = await getBrowser()
reactServer = spawn('http-server', ['-p', '8001', 'tests/fixtures/react'])
vueServer = spawn('http-server', ['-p', '8002', 'tests/fixtures/vue'])
imageServer = spawn('http-server', ['-p', '8003', 'tests/fixtures/images'])
reactServer = spawn('http-server', ['-p', '8001', 'fixtures/react'])
vueServer = spawn('http-server', ['-p', '8002', 'fixtures/vue'])
imageServer = spawn('http-server', ['-p', '8003', 'fixtures/images'])
await waitServerReady('http://localhost:8001/')
await waitServerReady('http://localhost:8002/')
await waitServerReady('http://localhost:8003/')
Expand Down Expand Up @@ -168,7 +168,7 @@ describe('getRenderedContent with evaluates', () => {

beforeAll(async () => {
browser = await getBrowser()
htmlServer = spawn('http-server', ['-p', '8004', 'tests/fixtures/html'])
htmlServer = spawn('http-server', ['-p', '8004', 'fixtures/html'])
await waitServerReady('http://localhost:8004/')
})
afterAll(async () => {
Expand Down
Loading