summaryrefslogtreecommitdiff
path: root/spec/javascripts/monitoring
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-03-06 11:09:16 -0600
committerMike Greiling <mike@pixelcog.com>2018-03-06 11:09:16 -0600
commit57d1ddff0ec39721f49d632ecebfd7be66465e98 (patch)
tree93dcc64da85d07f340882ba4e831d4b2c9eb6665 /spec/javascripts/monitoring
parentbae88da83c584046ed59e8c7ac4cb209cfd4b15f (diff)
downloadgitlab-ce-57d1ddff0ec39721f49d632ecebfd7be66465e98.tar.gz
replace fixture with simple mount point
Diffstat (limited to 'spec/javascripts/monitoring')
-rw-r--r--spec/javascripts/monitoring/dashboard_spec.js15
1 files changed, 6 insertions, 9 deletions
diff --git a/spec/javascripts/monitoring/dashboard_spec.js b/spec/javascripts/monitoring/dashboard_spec.js
index 4c5a10393c6..39de6f1bba6 100644
--- a/spec/javascripts/monitoring/dashboard_spec.js
+++ b/spec/javascripts/monitoring/dashboard_spec.js
@@ -5,7 +5,6 @@ import axios from '~/lib/utils/axios_utils';
import { metricsGroupsAPIResponse, mockApiEndpoint } from './mock_data';
describe('Dashboard', () => {
- const fixtureName = 'environments/metrics/metrics.html.raw';
let DashboardComponent;
const propsData = {
@@ -22,21 +21,19 @@ describe('Dashboard', () => {
emptyUnableToConnectSvgPath: '/path/to/unable-to-connect.svg',
};
- preloadFixtures(fixtureName);
-
beforeEach(() => {
- loadFixtures(fixtureName);
+ setFixtures('<div class="prometheus-graphs"></div>');
DashboardComponent = Vue.extend(Dashboard);
});
describe('no metrics are available yet', () => {
it('shows a getting started empty state when no metrics are present', () => {
const component = new DashboardComponent({
- el: document.querySelector('#prometheus-graphs'),
+ el: document.querySelector('.prometheus-graphs'),
propsData,
});
- expect(component.$el.querySelector('#prometheus-graphs')).toBe(null);
+ expect(component.$el.querySelector('.prometheus-graphs')).toBe(null);
expect(component.state).toEqual('gettingStarted');
});
});
@@ -54,7 +51,7 @@ describe('Dashboard', () => {
it('shows up a loading state', (done) => {
const component = new DashboardComponent({
- el: document.querySelector('#prometheus-graphs'),
+ el: document.querySelector('.prometheus-graphs'),
propsData: { ...propsData, hasMetrics: true },
});
@@ -66,7 +63,7 @@ describe('Dashboard', () => {
it('hides the legend when showLegend is false', (done) => {
const component = new DashboardComponent({
- el: document.querySelector('#prometheus-graphs'),
+ el: document.querySelector('.prometheus-graphs'),
propsData: { ...propsData, hasMetrics: true, showLegend: false },
});
@@ -80,7 +77,7 @@ describe('Dashboard', () => {
it('hides the group panels when showPanels is false', (done) => {
const component = new DashboardComponent({
- el: document.querySelector('#prometheus-graphs'),
+ el: document.querySelector('.prometheus-graphs'),
propsData: { ...propsData, hasMetrics: true, showPanels: false },
});