Newer
Older
import {Job, JobExecution, JobSpec, JobSpecFile} from './job';
describe('Job', () => {
it('should create an instance', () => {
expect(new Job()).toBeTruthy();
});
});
describe('JobExecution', () => {
it('should create an instance', () => {
expect(new JobExecution()).toBeTruthy();
});
});
describe('JobSpecFile', () => {
it('should create an instance', () => {
expect(new JobSpecFile()).toBeTruthy();
});
});
describe('JobSpec', () => {
it('should create an instance', () => {
expect(new JobSpec()).toBeTruthy();
});
});