Skip to content

Commit

Permalink
Merge pull request #8466 from Turbo87/fix-ci
Browse files Browse the repository at this point in the history
Skip flaky `serve-wasm` test on Node 6
  • Loading branch information
rwjblue committed Feb 28, 2019
2 parents f8c925b + 20788e0 commit c85d8ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/acceptance/smoke-test-slow.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const path = require('path');
const fs = require('fs-extra');
const crypto = require('crypto');
const walkSync = require('walk-sync');
const semver = require('semver');
const EOL = require('os').EOL;

const { isExperimentEnabled } = require('../../lib/experiments');
Expand All @@ -23,6 +24,8 @@ let expect = chai.expect;
let file = chai.file;
let dir = chai.dir;

const isNode6 = semver.satisfies(process.version, '^6');

let appName = 'some-cool-app';
let appRoot;

Expand Down Expand Up @@ -179,7 +182,7 @@ describe('Acceptance: smoke-test', function() {
expect(output).to.match(/pass\s+\d+/, 'many passing');
}));

it('ember test wasm', co.wrap(function *() {
(isNode6 ? it.skip : it)('ember test wasm', co.wrap(function *() {
let originalWrite = process.stdout.write;
let output = [];

Expand Down

0 comments on commit c85d8ae

Please sign in to comment.