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

Resolve CE-to-EE conflicts for job page

parent 105e7de5
...@@ -81,10 +81,7 @@ ...@@ -81,10 +81,7 @@
'shouldRenderCalloutMessage', 'shouldRenderCalloutMessage',
'shouldRenderTriggeredLabel', 'shouldRenderTriggeredLabel',
'hasEnvironment', 'hasEnvironment',
<<<<<<< HEAD
'shouldRenderSharedRunnerLimitWarning', 'shouldRenderSharedRunnerLimitWarning',
=======
>>>>>>> upstream/master
'hasTrace', 'hasTrace',
'emptyStateIllustration', 'emptyStateIllustration',
'isScrollingDown', 'isScrollingDown',
......
...@@ -41,7 +41,6 @@ export const emptyStateIllustration = state => ...@@ -41,7 +41,6 @@ export const emptyStateIllustration = state =>
(state.job && state.job.status && state.job.status.illustration) || {}; (state.job && state.job.status && state.job.status.illustration) || {};
export const emptyStateAction = state => (state.job && state.job.status && state.job.status.action) || {}; export const emptyStateAction = state => (state.job && state.job.status && state.job.status.action) || {};
<<<<<<< HEAD
// ee-only start // ee-only start
/** /**
...@@ -55,8 +54,6 @@ export const shouldRenderSharedRunnerLimitWarning = state => ...@@ -55,8 +54,6 @@ export const shouldRenderSharedRunnerLimitWarning = state =>
!_.isEmpty(state.job.runners.quota) && !_.isEmpty(state.job.runners.quota) &&
state.job.runners.quota.used >= state.job.runners.quota.limit; state.job.runners.quota.used >= state.job.runners.quota.limit;
// ee-only end // ee-only end
=======
>>>>>>> upstream/master
export const isScrollingDown = state => isScrolledToBottom() && !state.isTraceComplete; export const isScrollingDown = state => isScrolledToBottom() && !state.isTraceComplete;
......
...@@ -175,7 +175,6 @@ describe('Job Store Getters', () => { ...@@ -175,7 +175,6 @@ describe('Job Store Getters', () => {
}); });
}); });
<<<<<<< HEAD
describe('shouldRenderSharedRunnerLimitWarning', () => { describe('shouldRenderSharedRunnerLimitWarning', () => {
describe('without runners information', () => { describe('without runners information', () => {
it('returns false', () => { it('returns false', () => {
...@@ -231,8 +230,6 @@ describe('Job Store Getters', () => { ...@@ -231,8 +230,6 @@ describe('Job Store Getters', () => {
}); });
}); });
=======
>>>>>>> upstream/master
describe('hasRunnersForProject', () => { describe('hasRunnersForProject', () => {
describe('with available and offline runners', () => { describe('with available and offline runners', () => {
it('returns true', () => { 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