Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit ef30253

Browse files
committed
fixes #369
1 parent 1ab975c commit ef30253

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/system.spec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,12 @@ describe('System', function () {
216216
.then(done, done);
217217
});
218218

219-
it.skip('should throw what the script throws', function (done) {
219+
it('should throw what the script throws', function (done) {
220220
System.import('test/loads/deperror.js')
221221
.then(supposedToFail)
222+
.catch(function(e) {
223+
expect(e == 'dep error');
224+
})
222225
.then(done, done);
223226
});
224227

0 commit comments

Comments
 (0)