first commit

This commit is contained in:
Sergo
2023-07-29 21:10:00 +03:00
commit 27efd26d6c
49 changed files with 5490 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// For more information about this file see https://dove.feathersjs.com/guides/cli/service.test.html
import assert from 'assert'
import { app } from '../../../src/app'
describe('aliases service', () => {
it('registered the service', () => {
const service = app.service('aliases')
assert.ok(service, 'Registered the service')
})
})