Skip to content

Commit 9e05027

Browse files
committed
test: now test only build js, close #278
1 parent 7293173 commit 9e05027

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

test/test-cfg-resolve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22
import isPromise from 'is-promise';
3-
import cfgResolve from '../src/cfg-resolve';
3+
import cfgResolve from '../lib/cfg-resolve';
44

55
test('should return function', t => {
66
t.true(typeof cfgResolve === 'function');

test/test-cli.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import pathExists from 'path-exists';
66
import readPkg from 'read-pkg';
77
import copy from 'cpy';
88
import tempfile from 'tempfile';
9-
// import cli from '../src/cli';
109

1110
const cli = path.resolve('lib/cli.js');
1211
const read = file => new Promise((resolve, reject) => fs.readFile(file, 'utf8', (err, data) => {

test/test-out-resolve.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22
import isPromise from 'is-promise';
3-
import outResolve from '../src/out-resolve';
3+
import outResolve from '../lib/out-resolve';
44

55
test('should return function', t => {
66
t.true(typeof outResolve === 'function');

0 commit comments

Comments
 (0)