mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
a1a70c973f
add es6 transpiled use case
24 lines
611 B
JavaScript
24 lines
611 B
JavaScript
import {HTTP_STATUS} from "../../../src/lib/constants";
|
|
|
|
export default function (server2) {
|
|
describe('test plugin middlewares', () => {
|
|
test('should serve the registered route ES5', () => {
|
|
return server2.request({
|
|
uri: '/test/route',
|
|
method: 'GET'
|
|
})
|
|
.status(HTTP_STATUS.OK)
|
|
.body_ok('this is a custom route')
|
|
})
|
|
|
|
test('should serve the registered route ES6', () => {
|
|
return server2.request({
|
|
uri: '/test/route/es6',
|
|
method: 'GET'
|
|
})
|
|
.status(HTTP_STATUS.OK)
|
|
.body_ok('this is a custom route es6')
|
|
})
|
|
})
|
|
}
|