Skip to content

Commit

Permalink
Work around linter warnings in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xMartin committed Oct 30, 2020
1 parent c6fd6e0 commit cb8cf4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/redux/reducer.test.ts
Expand Up @@ -40,7 +40,7 @@ function createState(): Partial<AllState["app"]> {
};
}

describe(UPDATE_TRANSACTION_PARTICIPANT, () => {
describe(`${UPDATE_TRANSACTION_PARTICIPANT}`, () => {
it("updates participant status", () => {
const state = createState();
const action = updateTransactionParticipant("p1", "status", Status.PAID);
Expand All @@ -55,7 +55,7 @@ describe(UPDATE_TRANSACTION_PARTICIPANT, () => {
});
});

describe(ADD_PARTICIPANT_TO_TRANSACTION_SHARED_FORM, () => {
describe(`${ADD_PARTICIPANT_TO_TRANSACTION_SHARED_FORM}`, () => {
it("adds participant input to new transaction form", () => {
const state = createState();
const action = addParticipantToTransactionSharedForm();
Expand All @@ -74,7 +74,7 @@ describe(ADD_PARTICIPANT_TO_TRANSACTION_SHARED_FORM, () => {
});
});

describe(SET_ALL_JOINED_ON_TRANSACTION_SHARED_FORM, () => {
describe(`${SET_ALL_JOINED_ON_TRANSACTION_SHARED_FORM}`, () => {
it("sets all participant inputs of status NONE to JOINED", () => {
const state: Partial<AllState["app"]> = {
transactionForm: {
Expand Down

0 comments on commit cb8cf4f

Please sign in to comment.