mirror of https://github.com/webpack/webpack.git
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
|
import { test, unused } from "./module";
|
||
|
|
||
|
it("should run the test", () => {
|
||
|
expect(test()).toEqual({
|
||
|
used: "used",
|
||
|
unused: undefined
|
||
|
});
|
||
|
expect(unused).toEqual(undefined);
|
||
|
});
|