mirror of https://github.com/webpack/webpack.git
7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
|
|
it("should resolve both alternatives", () => {
|
||
|
|
const one = require("_/1");
|
||
|
|
const two = require("_/2");
|
||
|
|
expect(one).toBe(1);
|
||
|
|
expect(two).toBe(2);
|
||
|
|
});
|