mirror of https://github.com/webpack/webpack.git
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
|
|
it("should import an external css", done => {
|
||
|
|
import("../external/style.css").then(x => {
|
||
|
|
expect(x).toEqual(nsObj({}));
|
||
|
|
done();
|
||
|
|
}, done);
|
||
|
|
});
|