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

Commit da7fe40

Browse files
committed
test adjustments
1 parent 0e7f564 commit da7fe40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/system.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ describe('System', function () {
203203

204204

205205
it('Unhandled rejection test', function (done) {
206-
System.import('test/loads/load-non-existet')
206+
System.import('test/loads/load-non-existent')
207207
.then(supposeToFail)
208208
.catch(function (e) {
209209
expect(e).to.be.match(/Error loading "\S+" at \S+/);
@@ -283,7 +283,7 @@ describe('System', function () {
283283
.then(done, done);
284284
});
285285

286-
it('should support re-exporting overwriting', function (done) {
286+
(typeof traceur == 'undefined' ? it.skip : it)('should support re-exporting overwriting', function (done) {
287287
System.import('test/syntax/export-star2')
288288
.then(function (m) {
289289
expect(m.bar, 'should re-export "./export-star" bar variable')

0 commit comments

Comments
 (0)