UNPKG

create-broadcast-app

Version:

Create a NextGen TV broadcast app with one command

17 lines (14 loc) 486 B
'use strict'; const testSetup = require('../__shared__/test-setup'); test('builds in development', async () => { const { fulfilled } = await testSetup.scripts.start({ smoke: true }); expect(fulfilled).toBe(true); }); test('builds in production', async () => { const { fulfilled } = await testSetup.scripts.build(); expect(fulfilled).toBe(true); }); test('passes tests', async () => { const { fulfilled } = await testSetup.scripts.test(); expect(fulfilled).toBe(true); });