Skip to content

Commit

Permalink
Fix testing app
Browse files Browse the repository at this point in the history
  • Loading branch information
speigg committed Sep 2, 2016
1 parent c3e4f70 commit 88cbf39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions jspm.config.js
Expand Up @@ -17,9 +17,9 @@ SystemJS.config({
"dist/src": {
"defaultExtension": "js"
},
"example": {
"test": {
"map": {
"argon": "dist/argon.umd.js"
"@argonjs/argon": "dist/argon.min.js"
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions test/app/example.ts
@@ -1,6 +1,6 @@
// import * as Argon from 'argon'
import * as Argon from '@argonjs/argon'
// import * as Argon from '../dist/src/argon'
import * as Argon from '../src/argon'
// import * as Argon from '../../src/argon'

declare const THREE: any;

Expand Down
2 changes: 1 addition & 1 deletion test/app/index.html
Expand Up @@ -10,7 +10,7 @@
<body>
<div id="content"></div>
<script>
System.import('example/example.ts!')
System.import('test/app/example.ts!')
.catch(function(e) {
console.error(e && e.stack || e)
})
Expand Down

0 comments on commit 88cbf39

Please sign in to comment.