mirror of
https://github.com/ansible/awx.git
synced 2026-05-13 04:17:36 -02:30
adds missing license text files
This commit is contained in:
committed by
Jake McDermott
parent
56fb5479e2
commit
3dec379052
@@ -17,7 +17,7 @@ const HostNameDetailValue = styled.div`
|
||||
grid-template-columns: auto auto;
|
||||
`;
|
||||
|
||||
const processEventStatus = (event) => {
|
||||
const processEventStatus = event => {
|
||||
let status = null;
|
||||
if (event.event === 'runner_on_unreachable') {
|
||||
status = 'unreachable';
|
||||
@@ -43,7 +43,7 @@ const processEventStatus = (event) => {
|
||||
return status;
|
||||
};
|
||||
|
||||
const processCodeEditorValue = (value) => {
|
||||
const processCodeEditorValue = value => {
|
||||
let codeEditorValue;
|
||||
if (value === undefined) {
|
||||
codeEditorValue = false;
|
||||
@@ -57,7 +57,7 @@ const processCodeEditorValue = (value) => {
|
||||
return codeEditorValue;
|
||||
};
|
||||
|
||||
const processStdOutValue = (hostEvent) => {
|
||||
const processStdOutValue = hostEvent => {
|
||||
const taskAction = hostEvent?.event_data?.taskAction;
|
||||
const res = hostEvent?.event_data?.res;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ jest.setTimeout(120000);
|
||||
require('@nteract/mockument');
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const asyncFlush = () => new Promise((resolve) => setImmediate(resolve));
|
||||
export const asyncFlush = () => new Promise(resolve => setImmediate(resolve));
|
||||
|
||||
let hasConsoleError = false;
|
||||
let hasConsoleWarn = false;
|
||||
@@ -38,7 +38,7 @@ global.console = {
|
||||
},
|
||||
};
|
||||
|
||||
const logNetworkRequestError = (url) => {
|
||||
const logNetworkRequestError = url => {
|
||||
networkRequestUrl = url || true;
|
||||
return {
|
||||
status: 200,
|
||||
|
||||
Reference in New Issue
Block a user