chore(test): fix custom elements tests

pull/948/head
Jan van Brügge 4 years ago
parent 5d5fc5a362
commit cd55ebd34e
No known key found for this signature in database
GPG Key ID: 88E0BF7B7A546481

@ -5,7 +5,6 @@ const live = !!process.env.LIVE;
const ip = "bs-local.com";
const browserstack = require("./browserstack-karma.cjs");
const tsconfig = require("./test/tsconfig.json");
// https://www.browserstack.com/open-source (text search "parallels")
const BROWSERSTACK_OPEN_SOURCE_CONCURRENCY = 5;
@ -41,7 +40,10 @@ module.exports = function (config) {
],
hostname: ci ? ip : "localhost",
karmaTypescriptConfig: {
compilerOptions: tsconfig.compilerOptions,
compilerOptions: {
...require("./tsconfig.json").compilerOptions,
...require("./test/tsconfig.json").compilerOptions,
},
include: process.env.FILES_PATTERN.split(",").concat("src/**/*.ts"),
},
browserStack: {

Loading…
Cancel
Save