run es6 tests in karma

This commit is contained in:
Eric Hulburd
2016-03-04 17:43:39 -06:00
parent aa885f331c
commit 43a9daf94e
7 changed files with 162 additions and 48 deletions

10
examples/example.js Normal file
View File

@@ -0,0 +1,10 @@
class Example {
constructor(){
}
sayHi(){
console.log('hi')
}
}
export default Example;