Skip to content

Commit

Permalink
remove describe
Browse files Browse the repository at this point in the history
  • Loading branch information
lsabbagh committed Mar 29, 2024
1 parent edc888b commit e5613ed
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions src/controllers/users/list/list.spec.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
import {it, expect, describe} from 'vitest'
import supertest from 'supertest'

import {HttpStatusCode} from 'axios'


// Ɖ✌: list users
describe('✌', () => {
it('Unauthorized 😌', () => {
// const response = await global.superTestApp
// .get('/api/users/list', {})
it('Unauthorized 😌', () => {
// const response = await global.superTestApp
// .get('/api/users/list', {})

// console.log('....', response.response)
// console.log('....', response.response)

// expect(response.status).toBe(HttpStatusCode.Unauthorized)
expect(true).toBe(true)
})
// expect(response.status).toBe(HttpStatusCode.Unauthorized)
expect(true).toBe(true)
})

0 comments on commit e5613ed

Please sign in to comment.