Skip to content

Commit

Permalink
test: remove only, skip a WIP test...
Browse files Browse the repository at this point in the history
[#1]
  • Loading branch information
alxndr committed Nov 20, 2024
1 parent 8450bd5 commit e816b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('handlePayload', () => {
await expect(() => handlePayload({body: '{foo'})).rejects.toThrow(/JSON/)
})
})
describe('with valid payload', () => {
describe.skip('with valid payload', () => {
let payload
beforeEach(() => {
const data = {
Expand All @@ -50,7 +50,7 @@ describe('handlePayload', () => {
body: JSON.stringify(data)
}
})
describe.only('with invalid login', () => {
describe('with invalid login', () => {
beforeEach(() => {
vi.mock('./index', async (importOriginal) => {
const originalImplementation = await importOriginal()
Expand Down

0 comments on commit e816b47

Please sign in to comment.