Skip to content

Commit

Permalink
fix(test-make): run the default Makefile target
Browse files Browse the repository at this point in the history
This tests the Go build-cosmos and install steps.
  • Loading branch information
michaelfig committed Feb 3, 2020
1 parent b27426a commit aa7d960
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { test } from 'tape-promise/tape';
import { spawn } from 'child_process';

test('make build-cosmos', async t => {
test('make', async t => {
try {
await new Promise(resolve =>
spawn('make', ['build-cosmos'], {
spawn('make', {
cwd: `${__dirname}/..`,
stdio: ['ignore', 'ignore', 'inherit'],
}).addListener('exit', code => {
Expand Down

0 comments on commit aa7d960

Please sign in to comment.