summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/tags
diff options
context:
space:
mode:
authorAlexandre Pretto Nunes <anunes@thoughtworks.com>2015-01-15 15:04:48 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2015-01-15 15:10:07 -0200
commit43a783e10f0b89820fb8d1e5677b0fdbcf7e9b6e (patch)
treecb0de1b1f540ab670f78f3cc02f2e28ac7a6071f /web-ui/test/spec/tags
parentee5ce9624a800bb85b05d3c73f4ca30c61443429 (diff)
#153 fix mail checking and unchecking on mail list
Diffstat (limited to 'web-ui/test/spec/tags')
-rw-r--r--web-ui/test/spec/tags/data/tags.spec.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/web-ui/test/spec/tags/data/tags.spec.js b/web-ui/test/spec/tags/data/tags.spec.js
index adb279ac..469ab0ce 100644
--- a/web-ui/test/spec/tags/data/tags.spec.js
+++ b/web-ui/test/spec/tags/data/tags.spec.js
@@ -3,7 +3,11 @@
describeComponent('tags/data/tags', function () {
'use strict';
- beforeEach(function () {
+ var features;
+
+ beforeEach( function () {
+ features = require('features');
+ spyOn(features, 'isAutoRefreshEnabled').and.returnValue(false);
this.setupComponent();
});