mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 12:47:56 +08:00
* 1510-smoke-test * config default * update tests * update test config * fix linter errors * more comments * address comments * use npm install in push_tests.yml * use environment.default.json * adding docs * Take care of @mweiden's nits * Save screenshots in the __tests__/screenshots/ directory * typo * docs * Add chart tests (#1580) * merge tests * check if bin creation returned null before rendering charts (#1576) * check if bin creation returned null before rendering charts * refactor chart rendering into functions (#1577) * little fixes from PR * reintroduce fix to check for null values * change getAllByClass to return element * slice instead * new stackedbar test * feedback-1573-test (#1579) * feedback-1573-test * enable whole test set * revert tests Co-authored-by: Timmy Huang <tihuan@users.noreply.github.com> * tweak test to actually render chart * include snapshot * remove async * fix getAllHistograms * properly grab id Co-authored-by: Timmy Huang <tihuan@users.noreply.github.com> Co-authored-by: Matt Weiden <538456+mweiden@users.noreply.github.com> Co-authored-by: Severiano Badajoz <sbadajoz@chanzuckerberg.com>
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
/**
|
|
* `client/jest-puppeteer.config.js` is for configuring Puppeteer's launch config options
|
|
* `client/__tests__/e2e/puppeteer.setup.js` is for configuring `jest`, `browser`,
|
|
* and `page` objects
|
|
*/
|
|
|
|
const ENV_DEFAULT = require("../environment.default.json");
|
|
|
|
const jestEnv = process.env.JEST_ENV || ENV_DEFAULT.JEST_ENV;
|
|
const isHeadful =
|
|
process.env.HEADFUL === "true" || process.env.HEADLESS === "false";
|
|
|
|
const DEFAULT_LAUNCH_CONFIG = {
|
|
headless: !isHeadful,
|
|
args: ["--ignore-certificate-errors", "--ignore-ssl-errors"],
|
|
dumpio: true,
|
|
ignoreHTTPSErrors: true,
|
|
defaultViewport: {
|
|
width: 1280,
|
|
height: 960,
|
|
},
|
|
};
|
|
|
|
const LAUNCH_CONFIG_BY_ENV = {
|
|
[ENV_DEFAULT.DEBUG]: {
|
|
...DEFAULT_LAUNCH_CONFIG,
|
|
headless: false,
|
|
slowMo: 100,
|
|
devtools: true,
|
|
defaultViewport: {
|
|
width: DEFAULT_LAUNCH_CONFIG.defaultViewport.width,
|
|
height: DEFAULT_LAUNCH_CONFIG.defaultViewport.height + 560,
|
|
},
|
|
},
|
|
[ENV_DEFAULT.DEV]: {
|
|
...DEFAULT_LAUNCH_CONFIG,
|
|
headless: false,
|
|
slowMo: 5,
|
|
},
|
|
};
|
|
|
|
const launchConfig = LAUNCH_CONFIG_BY_ENV[jestEnv] || DEFAULT_LAUNCH_CONFIG;
|
|
|
|
module.exports = {
|
|
browserContext: "incognito",
|
|
launch: launchConfig,
|
|
};
|