mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 19:08:11 +08:00
Jest tests for part of util/stateManager * reorganize test directories * lint * add Jest config to eslint * add Jest config to eslint * lint * fix babel configuration for tests * start at kvCache tests * reorganize test directories * lint * add Jest config to eslint * add Jest config to eslint * lint * fix babel configuration for tests * start at kvCache tests * fix cache flush bug manifest by new test cases * new kvCache tests * skeletal universe test * fix race in test case * more universe test cases
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
module.exports = {
|
|
babelrc: false,
|
|
presets: [
|
|
["modern-browsers", { loose: true, modules: false }],
|
|
"stage-0",
|
|
"react"
|
|
],
|
|
plugins: [
|
|
"babel-plugin-transform-react-constant-elements",
|
|
"babel-plugin-transform-decorators-legacy",
|
|
"babel-plugin-transform-runtime"
|
|
]
|
|
};
|