import { ${name}Job } from './${name}Job'

describe('${name}Job', () => {
  it('should not throw any errors', async () => {
    await expect(${name}Job.perform()).resolves.not.toThrow()
  })
})
