Skip to content

Commit

Permalink
Fix spec paths in test HTML files
Browse files Browse the repository at this point in the history
  • Loading branch information
dasilvacontin committed Apr 24, 2017
1 parent 0a93024 commit 9bd9389
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/browser/grep.html
Expand Up @@ -11,7 +11,7 @@
if (!expr) throw new Error(msg || 'failed');
}
</script>
<script src="grep.js"></script>
<script src="grep.spec.js"></script>
</head>
<body>
<div id="mocha"></div>
Expand Down
6 changes: 3 additions & 3 deletions test/browser/index.html
Expand Up @@ -12,9 +12,9 @@
}
</script>
<script src="array.js"></script>
<script src="../acceptance/duration.js"></script>
<script src="../acceptance/timeout.js"></script>
<script src="multiple-done.js"></script>
<script src="../acceptance/duration.spec.js"></script>
<script src="../acceptance/timeout.spec.js"></script>
<script src="multiple-done.spec.js"></script>
<script>
onload = function(){
mocha.checkLeaks();
Expand Down
4 changes: 2 additions & 2 deletions test/browser/opts.html
Expand Up @@ -16,8 +16,8 @@
if (!expr) throw new Error(msg || 'failed');
}
</script>
<script src="opts.js"></script>
<script src="../acceptance/globals.js"></script>
<script src="opts.spec.js"></script>
<script src="../acceptance/globals.spec.js"></script>
<script>
onload = function(){
var runner = mocha.run();
Expand Down
2 changes: 1 addition & 1 deletion test/browser/stack-trace.html
Expand Up @@ -11,7 +11,7 @@
if (!expr) throw err;
}
</script>
<script src="stack-trace.js"></script>
<script src="stack-trace.spec.js"></script>
<script>
onload = function() {
mocha.run();
Expand Down
2 changes: 1 addition & 1 deletion test/browser/ui.html
Expand Up @@ -11,7 +11,7 @@
if (!expr) throw new Error(msg || 'failed');
}
</script>
<script src="ui.js"></script>
<script src="ui.spec.js"></script>
</head>
<body>
<div id="mocha"></div>
Expand Down

0 comments on commit 9bd9389

Please sign in to comment.