Skip to content

Commit 7607853

Browse files
committed
chore: add basic working tests
1 parent 697ed72 commit 7607853

8 files changed

+1251
-22
lines changed

karma.conf.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
const path = require('path');
2+
const { AureliaPlugin } = require('aurelia-webpack-plugin');
23

34
module.exports = function(config) {
45
const browsers = config.browsers;
56
config.set({
6-
77
basePath: '',
88
frameworks: ["jasmine"],
99
files: ["test/**/*.spec.ts"],
@@ -32,7 +32,16 @@ module.exports = function(config) {
3232
]
3333
},
3434
plugins: [
35-
35+
new AureliaPlugin({
36+
aureliaApp: undefined,
37+
dist: 'es2015',
38+
features: {
39+
ie: false,
40+
svg: false,
41+
unparser: false,
42+
polyfills: "esnext"
43+
}
44+
})
3645
]
3746
},
3847
mime: {

0 commit comments

Comments
 (0)