Skip to content
Snippets Groups Projects
Verified Commit c2d943a7 authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Changes after review

parent 4ad8c999
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -23,7 +23,7 @@
},
viewType: {
type: String,
required: false,
required: true,
},
},
components: {
Loading
Loading
Loading
Loading
@@ -31,7 +31,7 @@ export default {
},
viewType: {
type: String,
required: false,
required: true,
},
},
components: {
Loading
Loading
Loading
Loading
@@ -54,7 +54,7 @@
:href="status.details_path"
:class="cssClass"
v-tooltip
:title="status.text">
:title="!showText ? status.text : ''">
<ci-icon :status="status" />
 
<template v-if="showText">
Loading
Loading
Loading
Loading
@@ -10,6 +10,7 @@ describe('Pipelines Table Row', () => {
propsData: {
pipeline,
autoDevopsHelpPath: 'foo',
viewType: 'root',
},
}).$mount();
};
Loading
Loading
Loading
Loading
@@ -23,6 +23,7 @@ describe('Pipelines Table', () => {
propsData: {
pipelines: [],
autoDevopsHelpPath: 'foo',
viewType: 'root',
},
}).$mount();
});
Loading
Loading
@@ -49,6 +50,7 @@ describe('Pipelines Table', () => {
propsData: {
pipelines: [],
autoDevopsHelpPath: 'foo',
viewType: 'root',
},
}).$mount();
expect(component.$el.querySelectorAll('.commit.gl-responsive-table-row').length).toEqual(0);
Loading
Loading
@@ -61,6 +63,7 @@ describe('Pipelines Table', () => {
propsData: {
pipelines: [pipeline],
autoDevopsHelpPath: 'foo',
viewType: 'root',
},
}).$mount();
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment