add prettier

This commit is contained in:
2023-08-06 09:21:17 +03:00
parent cc453e2337
commit feb5e5b4ca
25 changed files with 524 additions and 591 deletions

View File

@@ -1,11 +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";
import assert from 'assert';
import { app } from '../../../src/app';
describe("aliases service", () => {
it("registered the service", () => {
const service = app.service("aliases");
describe('aliases service', () => {
it('registered the service', () => {
const service = app.service('aliases');
assert.ok(service, "Registered the service");
});
assert.ok(service, 'Registered the service');
});
});