소스 검색

chore: lint fixes

Kristian Vos 9 달 전
부모
커밋
aaa0a5c56b
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      backend/src/Job.spec.ts

+ 6 - 4
backend/src/Job.spec.ts

@@ -152,11 +152,13 @@ describe("Job", function () {
 			const job = new TestJob();
 			const data = faker.word.words();
 			Reflect.set(job, "_authorize", sinon.stub());
-			Reflect.set(job, "_execute", sinon.fake(async () => data));
+			Reflect.set(
+				job,
+				"_execute",
+				sinon.fake(async () => data)
+			);
 
-			await job
-				.execute()
-				.should.eventually.be.equal(data);
+			await job.execute().should.eventually.be.equal(data);
 		});
 
 		it("should publish callback event if ref configured on error");