webpack/test/configCases/amd/disabled/index.js

9 lines
149 B
JavaScript
Raw Normal View History

2019-03-11 01:13:54 +08:00
it("should compile", function(done) {
done();
});
2019-03-12 00:18:14 +08:00
it("should disable define", function(done) {
expect(typeof define).toBe('undefined')
2019-03-12 00:23:40 +08:00
done()
2019-03-12 00:18:14 +08:00
})