Browse Source

chore: lint fixes

Kristian Vos 9 months ago
parent
commit
aaa0a5c56b
1 changed files with 6 additions and 4 deletions
  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");