Skip to content

Commit a24b786

Browse files
committed
Fixing broken int tests
1 parent 599769d commit a24b786

File tree

7 files changed

+593
-9
lines changed

7 files changed

+593
-9
lines changed

integration/typescript/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const karmaBase = require('../../config/karma.base');
2121
module.exports = function(config) {
2222
const karmaConfig = Object.assign({}, karmaBase, {
2323
// files to load into karma
24-
files: [{ pattern: `dist/**/*` }],
24+
files: ['test/**/*.test.*'],
2525
// frameworks to use
2626
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
2727
frameworks: ['mocha']

integration/typescript/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"private": true,
44
"version": "0.1.0",
55
"scripts": {
6-
"pretest": "tsc",
7-
"test:browser": "karma start --single-run",
8-
"test": "run-p test:browser"
6+
"test": "karma start --single-run"
97
},
108
"dependencies": {
119
"firebase": "^4.3.3"

integration/typescript/tsconfig.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
2+
"extends": "../../config/tsconfig.base.json",
23
"compileOnSave": false,
34
"compilerOptions": {
45
"allowJs": true,
6+
"declaration": false,
57
"module": "commonjs",
68
"moduleResolution": "node",
79
"noImplicitAny": true,
810
"outDir": "dist",
911
"target": "ES5",
10-
"sourceMap": true,
11-
"typeRoots" : [
12-
"node_modules/@types"
13-
]
12+
"sourceMap": true
1413
},
1514
"exclude": [
1615
"node_modules",

0 commit comments

Comments
 (0)