13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
|
require('mocha')
|
||
|
|
||
|
describe('main test', () => {
|
||
|
it('should output an image', async () => {
|
||
|
//
|
||
|
})
|
||
|
it('should return error', async () => {
|
||
|
//
|
||
|
})
|
||
|
it('should return too many request', async () => {
|
||
|
//
|
||
|
})
|
||
|
})
|