Skip to content

Commit

Permalink
chore: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
charliegerard committed Feb 3, 2022
1 parent 5c82161 commit e0994ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/command.sites.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const process = require('process')

const test = require('ava')
const execa = require('execa')
const stripAnsi = require('strip-ansi')
Expand All @@ -11,7 +13,9 @@ const { withMockApi } = require('./utils/mock-api')
* @type {import('ava').TestInterface}
*/

test.skip('netlify sites:create-template', async (t) => {
const windowsSkip = process.platform === 'win32' ? test.skip : test

windowsSkip.skip('netlify sites:create-template', async (t) => {
const siteTemplateQuestions = [
{ question: 'Template: (Use arrow keys)', answer: CONFIRM },
{ question: 'Team: (Use arrow keys)', answer: CONFIRM },
Expand Down

0 comments on commit e0994ff

Please sign in to comment.