Skip to content

Commit

Permalink
Add mimetype to karma.conf.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lathonez committed Dec 8, 2016
1 parent 9d42c9b commit 5c0ffeb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<a name="2.3.0"></a>

# 2.4.0 (2016-12-08)

### Bug Fixes

* **Unit**: Add mime type to karma.conf.js, closes [#178](https://github.com/lathonez/clicker/issues/178) ([](https://github.com/lathonez/clicker/commit/))

# 2.3.0 (2016-11-18)

### Bug Fixes

* **Unit/E2E**: Reverting to using jasmine types in main tsconfig.json as excluding spec means editors don't resolve modules, closes [#174](https://github.com/lathonez/clicker/issues/174) ([](https://github.com/lathonez/clicker/commit/0ae024b))
* **Unit/E2E**: Reverting to using jasmine types in main tsconfig.json as excluding spec means editors don't resolve modules, closes [#174](https://github.com/lathonez/clicker/issues/174) ([0ae024b](https://github.com/lathonez/clicker/commit/0ae024b))

### Features

Expand Down
3 changes: 2 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
mime: { 'text/x-typescript': ['ts', 'tsx'] } // https://github.com/lathonez/clicker/issues/178
});
};

0 comments on commit 5c0ffeb

Please sign in to comment.