Skip to content

Commit

Permalink
feature: add brief configs
Browse files Browse the repository at this point in the history
  • Loading branch information
easy1090 committed Aug 29, 2024
1 parent 0c2d4f5 commit de35528
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/cases/doctor-rspack/brief.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function rspackCompile(
return res;
}

test('rspack banner plugin', async () => {
test('rspack brief mode', async () => {
const tapName = 'XXX';
await rspackCompile(tapName, compileByRspack);

Expand Down
8 changes: 6 additions & 2 deletions e2e/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { defineConfig } from '@playwright/test';
import { defineConfig, devices } from '@playwright/test';

export default defineConfig({
testMatch: ['/cases/**/**.test.ts'],
});
name: 'chrome',
use: {
...devices.DesktopChrome,
},
});

0 comments on commit de35528

Please sign in to comment.