File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11import assert from 'node:assert' ;
2+ import process from 'node:process' ;
23import { esmocha , expect } from 'esmocha' ;
34import _ from 'lodash' ;
45import nock from 'nock' ;
@@ -108,6 +109,10 @@ describe('install route', () => {
108109 } ) ;
109110
110111 it ( 'filters already installed generators and match search term' , function ( done ) {
112+ if ( process . platform === 'darwin' ) {
113+ this . skip ( ) ;
114+ }
115+
111116 let call = 0 ;
112117 inquirer . prompt . mockImplementation ( argument => {
113118 call ++ ;
@@ -131,6 +136,10 @@ describe('install route', () => {
131136 } ) ;
132137
133138 it ( 'filters blacklisted generators and match search term' , function ( done ) {
139+ if ( process . platform === 'darwin' ) {
140+ this . skip ( ) ;
141+ }
142+
134143 let call = 0 ;
135144 inquirer . prompt . mockImplementation ( argument => {
136145 call ++ ;
You can’t perform that action at this time.
0 commit comments