File tree 1 file changed +2
-6
lines changed 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,12 @@ require('../lib/chalk').set();
4
4
const path = require ( 'path' ) ;
5
5
const fs = require ( 'fs' ) ;
6
6
const del = require ( 'del' ) ;
7
- const tap = require ( 'tap' ) ;
7
+ const test = require ( 'tap' ) . test ;
8
8
const Api = require ( '../api' ) ;
9
9
10
- const skip = tap . skip ;
11
- const test = tap . test ;
12
-
13
10
const testCapitalizerPlugin = require . resolve ( './fixture/babel-plugin-test-capitalizer' ) ;
14
11
15
12
const ROOT_DIR = path . join ( __dirname , '..' ) ;
16
- const isNode4 = / \d + / . exec ( process . version ) [ 0 ] === '4' ;
17
13
18
14
function apiCreator ( options ) {
19
15
options = options || { } ;
@@ -939,7 +935,7 @@ if (Number(process.version.split('.')[0].slice(1)) < 8) {
939
935
generatePassInspectIntegrationTests ( [ '--inspect' ] ) ;
940
936
}
941
937
942
- ( isNode4 ? skip : test ) ( '`esm` package support' , t => {
938
+ test ( '`esm` package support' , t => {
943
939
const api = apiCreator ( {
944
940
require : [ require . resolve ( 'esm' ) ]
945
941
} ) ;
You can’t perform that action at this time.
0 commit comments