fusion-cli
Version:
22 lines (18 loc) • 564 B
JavaScript
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
/* eslint-env node */
const baseJestConfig = require('../base-jest-config.js');
module.exports = {
...baseJestConfig,
displayName: 'browser',
browser: true,
name: 'browser',
// Exposes global.jsdom so we can reconfigure the url on each simulator.render call
testEnvironment: 'jest-environment-jsdom-global',
testPathIgnorePatterns: ['.*\\.node\\.js'],
};