mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-18 17:18:05 +08:00
* Add smoke test for annotations features
* Do not save during annotations tests
* Fix botched rebase in dev guidelines
* Revert "Do not save during annotations tests"
This reverts commit f0bd970bb2.
* Respond to feedback from @bkmartinjr
10 lines
340 B
JavaScript
10 lines
340 B
JavaScript
export const jest_env = process.env.JEST_ENV;
|
|
export const appPort = process.env.CXG_SERVER_PORT;
|
|
export const appUrlBase = `http://localhost:${appPort}`;
|
|
export const DEV = jest_env === "dev";
|
|
export const DEBUG = jest_env === "debug";
|
|
export const DATASET = "pbmc3k";
|
|
|
|
if (DEBUG) jest.setTimeout(100000);
|
|
if (DEV) jest.setTimeout(10000);
|