We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53b5dcc + f4a55cf commit 1376857Copy full SHA for 1376857
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');
@@ -270,6 +272,13 @@ describe('Acceptance: ember new', function () {
270
272
});
271
273
274
it('ember new with shorthand git blueprint and ref checks out the blueprint with the correct ref and uses it', async function () {
275
+ // Temporarily skipped for npm versions <= v6.0.0.
276
+ // See https://github.com/npm/cli/issues/4896 for more info.
277
+ let { stdout: npmVersion } = await execa('npm', ['-v']);
278
+ if (semver.major(npmVersion) <= 6) {
279
+ this.skip();
280
+ }
281
+
282
this.timeout(20000); // relies on GH network stuff
283
284
await ember([
0 commit comments