Skip to content

Commit

Permalink
test: example problem of #11668
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Oct 22, 2020
1 parent d42705c commit cb20b64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/configCases/resolve-merging/override/loader.js
Expand Up @@ -14,6 +14,9 @@ module.exports = async function () {
const resolved3 = await overrideResolve(this.context, "./package");
const resolved4 = await customKnownResolve(this.context, "package2");
const resolved5 = await customUnknownResolve(this.context, "package2");
const resolved6 = await this.getResolve()(this.context, undefined);
const resolved7 = await this.getResolve()(undefined, "package2");
const resolved8 = await this.getResolve()(undefined);
return `
export { default as a } from ${JSON.stringify(resolved1)};
export { default as b } from ${JSON.stringify(resolved2)};
Expand Down

0 comments on commit cb20b64

Please sign in to comment.