mirror of https://github.com/webpack/webpack.git
6 lines
118 B
JavaScript
6 lines
118 B
JavaScript
|
it("should compile and run", () => {
|
||
|
expect(hello()).toBe("hello");
|
||
|
});
|
||
|
|
||
|
export function hello() { return "hello"; }
|