UNPKG

glass-app-manager

Version:

Informatica's Glass Framework CLI for bootstrapping

11 lines (8 loc) 253 B
'use strict' const { test } = require('ava') const execa = require('execa') test('--help', async (t) => { const { stdout } = await execa('./index.js', [ '--help' ]) t.true(stdout.length > 0) t.true(/glass-app-manager/.test(stdout)) })