mirror of https://github.com/webpack/webpack.git
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
|
import MyClass, {a, b} from "library-esm";
|
||
|
|
||
|
it("should get exports from systemjs library (" + NAME + ")", function() {
|
||
|
expect(new MyClass().getValue()).toBe("my-class")
|
||
|
expect(a).toBe(10);
|
||
|
expect(b).toBe(20);
|
||
|
});
|