/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { JobManifestV1Model } from '../../../manifest'; export const mockManifestJson: JobManifestV1Model = { $schema: 'http://localhost:3040/schemas/v1.json#', name: 'test-job', displayName: 'Test Job', version: '1.0.0', concurrency: 1, timeout: 600, mainFunction: 'main', description: 'some-description', functions: [ { name: 'main', entry: 'main.js', input: { type: 'object', properties: { something: { type: 'string', }, }, required: ['something'], }, }, { name: 'promise-func', entry: 'promise.js', input: { type: 'object', properties: { something: { type: 'string', }, }, required: ['something'], }, }, ], };