mirror of https://github.com/webpack/webpack.git
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
|
|
import { answer } from './lib';
|
||
|
|
|
||
|
|
it("should load module correctly", function() {
|
||
|
|
var result = require("./text.txt.js!=!./loader.js!./text.txt");
|
||
|
|
|
||
|
|
expect(result.default).toEqual(answer);
|
||
|
|
});
|