-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/circular-options
- Loading branch information
Showing
11 changed files
with
153 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@rsdoctor/webpack-plugin': patch | ||
'@rsdoctor/rspack-plugin': patch | ||
'@rsdoctor/sdk': patch | ||
--- | ||
|
||
fix(multi-plugin): fix multi-plugin options error |
56 changes: 56 additions & 0 deletions
56
e2e/cases/doctor-webpack/plugins/multi-plugin-brief.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import { expect, test } from '@playwright/test'; | ||
import { getSDK } from '@rsdoctor/core/plugins'; | ||
import { compileByWebpack5 } from '@scripts/test-helper'; | ||
import path from 'path'; | ||
import { Compiler } from 'webpack'; | ||
import { createRsdoctorMultiPlugin } from '../test-utils'; | ||
|
||
async function webpack(tapName: string, compile: typeof compileByWebpack5) { | ||
const file = path.resolve(__dirname, '../fixtures/a.js'); | ||
const loader = path.resolve(__dirname, '../fixtures/loaders/comment.js'); | ||
const res = await compile(file, { | ||
module: { | ||
rules: [ | ||
{ | ||
test: /\.js/, | ||
use: loader, | ||
}, | ||
], | ||
}, | ||
plugins: [ | ||
createRsdoctorMultiPlugin({ | ||
mode: 'brief', | ||
brief: { | ||
reportHtmlName: '111.html', | ||
writeDataJson: false, | ||
}, | ||
}), | ||
{ | ||
name: tapName, | ||
apply(compiler: Compiler) { | ||
compiler.hooks.done.tapPromise(tapName, async () => { | ||
// nothing | ||
}); | ||
compiler.hooks.thisCompilation.tap(tapName, (compilation) => { | ||
compilation.hooks.seal.tap(tapName, () => { | ||
return 'seal end'; | ||
}); | ||
}); | ||
}, | ||
}, | ||
], | ||
}); | ||
return res; | ||
} | ||
|
||
test('rsdoctor webpack5 multi-plugins options tests', async () => { | ||
const tapName = 'Foo'; | ||
await webpack(tapName, compileByWebpack5); | ||
const sdk = getSDK(); | ||
expect(sdk.type).toBe(0); | ||
expect(sdk.extraConfig?.mode).toBe('brief'); | ||
expect(sdk.extraConfig?.brief).toMatchObject({ | ||
reportHtmlName: '111.html', | ||
writeDataJson: false, | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.