Skip to content
Merged
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 test/basic/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test('should throw error when exist ESLint errors', async () => {
plugins: [pluginEslint()],
},
});
await expect(rsbuild.build()).rejects.toThrowError('build failed!');
await expect(rsbuild.build()).rejects.toThrowError('build failed');

expect(
logs.find((log) => log.includes(`'undefinedVar' is not defined`)),
Expand Down
2 changes: 1 addition & 1 deletion test/flat-config/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test('should throw error when exist ESLint errors', async () => {
],
},
});
await expect(rsbuild.build()).rejects.toThrowError('build failed!');
await expect(rsbuild.build()).rejects.toThrowError('build failed');

expect(
logs.find((log) => log.includes(`'undefinedVar' is not defined`)),
Expand Down