Commit 72d1817a authored by Steve Azzopardi's avatar Steve Azzopardi

Resolve CE-to-EE conflicts for job page

parent 105e7de5
......@@ -81,10 +81,7 @@
'shouldRenderCalloutMessage',
'shouldRenderTriggeredLabel',
'hasEnvironment',
<<<<<<< HEAD
'shouldRenderSharedRunnerLimitWarning',
=======
>>>>>>> upstream/master
'hasTrace',
'emptyStateIllustration',
'isScrollingDown',
......
......@@ -41,7 +41,6 @@ export const emptyStateIllustration = state =>
(state.job && state.job.status && state.job.status.illustration) || {};
export const emptyStateAction = state => (state.job && state.job.status && state.job.status.action) || {};
<<<<<<< HEAD
// ee-only start
/**
......@@ -55,8 +54,6 @@ export const shouldRenderSharedRunnerLimitWarning = state =>
!_.isEmpty(state.job.runners.quota) &&
state.job.runners.quota.used >= state.job.runners.quota.limit;
// ee-only end
=======
>>>>>>> upstream/master
export const isScrollingDown = state => isScrolledToBottom() && !state.isTraceComplete;
......
......@@ -175,7 +175,6 @@ describe('Job Store Getters', () => {
});
});
<<<<<<< HEAD
describe('shouldRenderSharedRunnerLimitWarning', () => {
describe('without runners information', () => {
it('returns false', () => {
......@@ -231,8 +230,6 @@ describe('Job Store Getters', () => {
});
});
=======
>>>>>>> upstream/master
describe('hasRunnersForProject', () => {
describe('with available and offline runners', () => {
it('returns true', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment