Skip to content

Commit

Permalink
chore: reproduce
Browse files Browse the repository at this point in the history
  • Loading branch information
evenchange4 committed Nov 7, 2024
1 parent b315ace commit d1a70ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/filter-e2e.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const path = require('path');

let e2eTests = ['test/fixtures', 'test/e2e'];
let e2eTests = ['test/e2e/basename.test.ts'];

if (process.env.SKIP_FIXTURES) {
e2eTests = e2eTests.filter(s => s !== 'test/fixtures');
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/basename.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ describe('Basename Support', () => {
const result = await page.goto(ctx.url('/base-name'));
expect(result?.status()).toBe(500);
expect(await page.$text('body')).toContain(
'appConfig is not set for the request'
'appConfig.router.basename must be a string'
);
});
});

test(`concurrent requests with different basename`, async () => {
test.only(`concurrent requests with different basename`, async () => {
ctx = await devFixture('basename', {
ssr: true,
plugins: ['./plugin']
Expand Down

0 comments on commit d1a70ba

Please sign in to comment.