Skip to content

refactor: Refactor auth provider #5782

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jan 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Increse timeout
  • Loading branch information
BrunoQuaresma committed Jan 19, 2023
commit ea4300bd06c47489ba2f914acd783fc29f822dfc
4 changes: 2 additions & 2 deletions site/src/pages/WorkspacePage/WorkspacePage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ beforeAll(() => {

beforeEach(() => {
jest.resetAllMocks()
jest.setTimeout(20_000)
})

afterAll(() => {
Expand Down Expand Up @@ -114,7 +113,8 @@ describe("WorkspacePage", () => {
const confirmButton = await screen.findByRole("button", { name: "Delete" })
await user.click(confirmButton)
expect(deleteWorkspaceMock).toBeCalled()
})
// This test takes long to finish
}, 20_000)

it("requests a start job when the user presses Start", async () => {
server.use(
Expand Down