Skip to content

Commit

Permalink
disable eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
eperedo committed Mar 14, 2024
1 parent a011d59 commit 5b94062
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/data/repositories/QualityAnalysisD2Repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ export class QualityAnalysisD2Repository implements QualityAnalysisRepository {
)
).flatMap(d2JobResponse => {
return apiToFuture(
// this rule is being applied outside the context of testing-library
// more info here: https://github.com/testing-library/eslint-plugin-testing-library/blob/main/docs/rules/await-async-utils.md
// eslint-disable-next-line testing-library/await-async-utils
this.api.system.waitFor("TRACKER_IMPORT_JOB", d2JobResponse.response.id)
).flatMap(d2Response => {
if (d2Response?.status === "ERROR") {
Expand Down

0 comments on commit 5b94062

Please sign in to comment.