summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/page
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-10-07 15:01:42 +0200
committerBruno Wagner <bwagner@thoughtworks.com>2014-10-07 15:01:54 +0200
commit6299531f4c8f7daa1b4afab45d0439f635b03982 (patch)
tree92b2876e732731e5219e50ef7719c72ec2cb478a /web-ui/test/spec/page
parent88abefd3e62fb65a08dde62a7d7e4ce1fa22f563 (diff)
Fixed jshint errors
Diffstat (limited to 'web-ui/test/spec/page')
-rw-r--r--web-ui/test/spec/page/router/url_params.spec.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/web-ui/test/spec/page/router/url_params.spec.js b/web-ui/test/spec/page/router/url_params.spec.js
index a14ba1ba..f05fa8a1 100644
--- a/web-ui/test/spec/page/router/url_params.spec.js
+++ b/web-ui/test/spec/page/router/url_params.spec.js
@@ -1,4 +1,7 @@
+/* global jasmine */
+
require(['page/router/url_params'], function (urlParams) {
+ 'use strict';
describe('urlParams', function () {
@@ -8,7 +11,7 @@ require(['page/router/url_params'], function (urlParams) {
window.onpopstate = function () {};
});
- afterEach(function () {
+ jasmine.afterEach(function () {
document.location.hash = '';
});