change prettier config
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-08-06 09:09:48 +03:00
parent 495e8057c8
commit c60d7d0c30
24 changed files with 462 additions and 535 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');
});
});