1 import app from '../../src/app'; 2 3 describe("'users' service", () => { 4 it('registered the service', () => { 5 const service = app.service('users'); 6 expect(service).toBeTruthy(); 7 }); 8 });