Skip to content

Commit

Permalink
Fixing broken int tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcrowthe committed Sep 22, 2017
1 parent 599769d commit a24b786
Show file tree
Hide file tree
Showing 7 changed files with 593 additions and 9 deletions.
2 changes: 1 addition & 1 deletion integration/typescript/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const karmaBase = require('../../config/karma.base');
module.exports = function(config) {
const karmaConfig = Object.assign({}, karmaBase, {
// files to load into karma
files: [{ pattern: `dist/**/*` }],
files: ['test/**/*.test.*'],
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha']
Expand Down
4 changes: 1 addition & 3 deletions integration/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"private": true,
"version": "0.1.0",
"scripts": {
"pretest": "tsc",
"test:browser": "karma start --single-run",
"test": "run-p test:browser"
"test": "karma start --single-run"
},
"dependencies": {
"firebase": "^4.3.3"
Expand Down
File renamed without changes.
7 changes: 3 additions & 4 deletions integration/typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"extends": "../../config/tsconfig.base.json",
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"declaration": false,
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "dist",
"target": "ES5",
"sourceMap": true,
"typeRoots" : [
"node_modules/@types"
]
"sourceMap": true
},
"exclude": [
"node_modules",
Expand Down
Loading

0 comments on commit a24b786

Please sign in to comment.