Skip to content

Commit

Permalink
modifies check-build to differentiate between test env (#665)
Browse files Browse the repository at this point in the history
Co-authored-by: John Holdun <[email protected]>
  • Loading branch information
jaehanley and johnholdun authored Jul 22, 2022
1 parent 6ffa1a7 commit f7439ec
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions scripts/check-build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,6 @@
import assert from 'assert';
import cheerio from 'cheerio';

let urls = [
{
url: 'http://www.cnn.com/2016/11/05/middleeast/iraq-mosul-isis-offensive/',
title: 'Iraqi troops storm town south of Mosul',
},
{
url:
'https://www.cnn.com/2019/01/30/politics/trump-intel-chiefs-foreign-policy-iran-isis-north-korea/index.html',
title:
'Trump chastises intel chiefs after they contradict him on Iran and claims of foreign policy success',
},
];

// don't run this on CI b/c we want to avoid network requests
if (
process.env.CI ||
Expand All @@ -38,6 +25,22 @@ if (
typeof Mercury === 'undefined' ? require('../dist/mercury') : Mercury;

describe('Is Mercury build working', () => {
let urls = [
{
url:
'http://www.cnn.com/2016/11/05/middleeast/iraq-mosul-isis-offensive/',
title: `Iraqi troops storm town south of Mosul${
Merc.browser ? ' | CNN' : ''
}`,
},
{
url:
'https://www.cnn.com/2019/01/30/politics/trump-intel-chiefs-foreign-policy-iran-isis-north-korea/index.html',
title: `Trump chastises intel chiefs after they contradict him on Iran and claims of foreign policy success${
Merc.browser ? ' | CNN Politics' : ''
}`,
},
];
if (Merc.browser) {
const proxyUrl = 'http://localhost:3000/';
urls = urls.map(article => ({
Expand Down

0 comments on commit f7439ec

Please sign in to comment.