Skip to content

Commit

Permalink
Apply Prettier
Browse files Browse the repository at this point in the history
teffybiskup committed Nov 21, 2022
1 parent 17e2847 commit 4577858
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -4,5 +4,5 @@ module.exports = {
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy",
},
testEnvironment: 'jsdom',
testEnvironment: "jsdom",
};
4 changes: 3 additions & 1 deletion src/tests/BranchTreeView.test.tsx
Original file line number Diff line number Diff line change
@@ -7,6 +7,8 @@ describe("BranchTreeView", () => {
render(<BranchTreeView />);

// Assert
await waitFor(() => expect(screen.getAllByTestId("tree-item")).toHaveLength(11));
await waitFor(() =>
expect(screen.getAllByTestId("tree-item")).toHaveLength(11)
);
});
});

0 comments on commit 4577858

Please sign in to comment.