Skip to content

Commit f05a00d

Browse files
author
Carlin
committed
adding chai and mocha testing frameworks via npm
1 parent 3124b03 commit f05a00d

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,4 @@ temp
2020
.tmp
2121
dist
2222
.sass-cache
23-
app/bower_components
24-
test/bower_components
2523
package
26-

test/index.html

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@
33
<head>
44
<meta charset="utf-8">
55
<title>Mocha Spec Runner</title>
6-
<link rel="stylesheet" href="../bower_components/mocha/mocha.css">
6+
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
77
</head>
88
<body>
99
<div id="mocha"></div>
10-
<script src="../bower_components/mocha/mocha.js"></script>
10+
<script src="../node_modules/mocha/mocha.js"></script>
1111
<script>mocha.setup('bdd');</script>
12-
<script src="../bower_components/chai/chai.js"></script>
12+
<script src="../node_modules/chai/chai.js"></script>
1313
<script>
1414
var assert = chai.assert;
1515
var expect = chai.expect;
1616
var should = chai.should();
1717
</script>
18-
<!-- bower:js -->
19-
<!-- endbower -->
2018
<!-- include source files here... -->
2119
<!-- include spec files here... -->
2220
<script src="spec/test.js"></script>

0 commit comments

Comments
 (0)