mirror of https://github.com/webpack/webpack.git
8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
|
it("should don't have variable name conflict", function() {
|
||
|
expect(true).toBe(true);
|
||
|
});
|
||
|
|
||
|
export const id = "collision";
|
||
|
export const ids = ["collision"];
|
||
|
export const modules = { "collision": true };
|