Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
webhooks.test.ts 214 B
import app from '../../src/app';

describe("'webhooks' service", () => {
  it('registered the service', () => {
    const service = app.service('webhooks/topic/:topic');
    expect(service).toBeTruthy();
  });
});