Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Eipert <leipert@gitlab.com>2019-06-28 16:39:55 +0300
committerLukas Eipert <leipert@gitlab.com>2019-06-28 19:47:00 +0300
commit7abbbce38cdb652880b3f0166363ff39462983bd (patch)
treec63340c2b50d524acd853af6efea562a6f5985be
parent85f65f5f7103ef27b50d102b4c2fe1d049d07b65 (diff)
Fix selector in karma spec
-rw-r--r--spec/javascripts/monitoring/dashboard_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/monitoring/dashboard_spec.js b/spec/javascripts/monitoring/dashboard_spec.js
index ab8360193be..d3e10194d92 100644
--- a/spec/javascripts/monitoring/dashboard_spec.js
+++ b/spec/javascripts/monitoring/dashboard_spec.js
@@ -241,7 +241,7 @@ describe('Dashboard', () => {
Vue.nextTick()
.then(() => {
const dropdownItems = component.$el.querySelectorAll(
- '.js-environments-dropdown .dropdown-item.is-active',
+ '.js-environments-dropdown .dropdown-item.active',
);
expect(dropdownItems.length).toEqual(1);