UNPKG
feathers-blipp
Version:
latest (0.0.0)
0.0.0
feathers blipp
github.com/feathersjs/feathers-blipp
feathersjs/feathers-blipp
feathers-blipp
/
example
/
test
/
services
/
user.test.js
11 lines
(8 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
assert =
require
(
'assert'
);
const
app =
require
(
'../../src/app'
);
describe
(
'\'user\' service'
,
() =>
{
it
(
'registered the service'
,
() =>
{
const
service = app.
service
(
'user'
); assert.
ok
(service,
'Registered the service'
); }); });