We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb2d827 commit d051954Copy full SHA for d051954
1 file changed
tests/acceptance/new-test.js
@@ -1,5 +1,7 @@
1
'use strict';
2
3
+const execa = require('execa');
4
+const semver = require('semver');
5
const fs = require('fs-extra');
6
const ember = require('../helpers/ember');
7
const walkSync = require('walk-sync');
@@ -277,6 +279,13 @@ describe('Acceptance: ember new', function () {
277
279
});
278
280
281
it('ember new with shorthand git blueprint and ref checks out the blueprint with the correct ref and uses it', async function () {
282
+ // Temporarily skipped for npm versions <= v6.0.0.
283
+ // See https://github.com/npm/cli/issues/4896 for more info.
284
+ let { stdout: npmVersion } = await execa('npm', ['-v']);
285
+ if (semver.major(npmVersion) <= 6) {
286
+ this.skip();
287
+ }
288
+
289
this.timeout(20000); // relies on GH network stuff
290
291
await ember([
0 commit comments