Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mansaj committed Jan 9, 2025
1 parent 66ee7bf commit 7209b75
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ const mockedSubscriber: SubscriberRow = {
monthly_monitor_report: false,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

const mockedUser: Session["user"] = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ const mockedSubscriber: SubscriberRow = {
monthly_monitor_report: false,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

const mockedUser: Session["user"] = {
Expand Down
7 changes: 7 additions & 0 deletions src/utils/subscriberBreaches.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ const subscriber: SubscriberRow = {
monthly_monitor_report: false,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

const allBreaches: HibpLikeDbBreach[] = [
Expand Down Expand Up @@ -550,6 +551,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down Expand Up @@ -649,6 +651,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down Expand Up @@ -756,6 +759,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down Expand Up @@ -873,6 +877,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down Expand Up @@ -990,6 +995,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down Expand Up @@ -1103,6 +1109,7 @@ describe("getSubBreaches", () => {
onerep_profile_id: null,
sign_in_count: null,
first_broker_removal_email_sent: false,
churn_prevention_email_sent: false,
};

(
Expand Down

0 comments on commit 7209b75

Please sign in to comment.