We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3241a52 commit cf17592Copy full SHA for cf17592
shell/app-shell/elements/test/fake-database-test.js
@@ -5,6 +5,8 @@
5
// subject to an additional IP rights grant found at
6
// http://polymer.github.io/PATENTS.txt
7
8
+const assert = chai.assert;
9
+
10
afterEach(function() {
11
db.reset();
12
});
shell/test/index.test.html
@@ -18,8 +18,10 @@
18
<script src="../node_modules/mocha/mocha.js"></script>
19
<script>mocha.setup('bdd')</script>
20
21
+<!-- TODO(smalls) fix this up with ES6 modules
22
<script src="../apps/chrome-extension/data-processing.js"></script>
23
<script src="../apps/chrome-extension/test/data-processing-test.js"></script>
24
+-->
25
26
<script src="../app-shell/elements/test/fake-database.js"></script>
27
<script src="../app-shell/elements/test/fake-database-test.js"></script>
0 commit comments