mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
import app from '../config/server'
|
|
import supertest from 'supertest'
|
|
|
|
const request = supertest.agent(app.listen())
|
|
|
|
describe('Users', () => {
|
|
describe('GET /users', () => {
|
|
it('should respond with 200', (done) => {
|
|
request
|
|
.get('/users')
|
|
.expect(200)
|
|
.expect({}, done)
|
|
})
|
|
})
|
|
})
|