UNPKG

create-broadcast-app

Version:

Create a NextGen TV broadcast app with one command

44 lines (38 loc) 1.33 kB
'use strict'; const testSetup = require('../__shared__/test-setup'); const puppeteer = require('puppeteer'); test('can use mjs library in development', async () => { const { port, done } = await testSetup.scripts.start(); const browser = await puppeteer.launch({ headless: true }); try { const page = await browser.newPage(); await page.goto(`http://localhost:${port}/`); await page.waitForSelector('.mjs-gql-result', { timeout: 0 }); const output = await page.evaluate(() => { return Array.from(document.getElementsByClassName('mjs-gql-result')).pop() .innerHTML; }); expect(output).toMatchSnapshot(); } finally { browser.close(); done(); } }); test('can use mjs library in production', async () => { await testSetup.scripts.build(); const { port, done } = await testSetup.scripts.serve(); const browser = await puppeteer.launch({ headless: true }); try { const page = await browser.newPage(); await page.goto(`http://localhost:${port}/`); await page.waitForSelector('.mjs-gql-result', { timeout: 0 }); const output = await page.evaluate(() => { return Array.from(document.getElementsByClassName('mjs-gql-result')).pop() .innerHTML; }); expect(output).toMatchSnapshot(); } finally { browser.close(); done(); } });