blob: 43c1a2cafaa8e393850654dbe67c597d3d7166be [file] [log] [blame]
Jamal Carvalho594a8c62021-04-16 16:25:51 -04001/**
2 * @license
3 * Copyright 2021 The Go Authors. All rights reserved.
4 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file.
6 */
7
8let config = {
Jamal Carvalhof3323302021-10-25 18:39:23 +00009 testEnvironment: 'jsdom',
Jamal Carvalho594a8c62021-04-16 16:25:51 -040010 preset: 'ts-jest',
11 globals: {
12 'ts-jest': {
13 isolatedModules: true,
14 },
15 },
16 moduleFileExtensions: ['ts', 'js'],
Jamal Carvalho594a8c62021-04-16 16:25:51 -040017};
18
Jamal Carvalho594a8c62021-04-16 16:25:51 -040019// eslint-disable-next-line no-undef
20module.exports = config;