From dad6398b5992841f2eaaaa7ae02bb4d962165da6 Mon Sep 17 00:00:00 2001 From: dapplion Date: Sun, 24 Nov 2019 18:12:46 +0100 Subject: [PATCH] Test start (placeholder only) f --- .../test/integration/start/all.test.js | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 packages/aragon-cli/test/integration/start/all.test.js diff --git a/packages/aragon-cli/test/integration/start/all.test.js b/packages/aragon-cli/test/integration/start/all.test.js new file mode 100644 index 000000000..a302d0db0 --- /dev/null +++ b/packages/aragon-cli/test/integration/start/all.test.js @@ -0,0 +1,25 @@ +import test from 'ava' +import { buildClient } from '../../../src/lib/start' + +/** + * Postpone until the refactor is completed + * The current code in `/lib` includes `listr` logic, which shouldn't happen + * + * - build-client.js (buildClient): Skipped + * Would have to create a new package.json with a build:local script + * + * - download-client.js (downloadClient) + * + * - fetch-client.js (fetchClient) + * + * - open-client.js (openClient) + * + * - start-client.js (startClient) + * + */ + +/* eslint-disable-next-line ava/no-skip-test */ +test.skip('Build client', async t => { + // arrange + await buildClient({}, '.') +})