style: format.

This commit is contained in:
Ivan 2021-02-24 09:44:07 +08:00
parent ab6c56e55a
commit 9470aa8f8a
3 changed files with 15 additions and 2 deletions

View File

@ -10,4 +10,4 @@ db:
username: fennec username: fennec
password: password:
workspaces: workspaces:
root: '/Users/ivanli/Projects/fennec/workspaces' root: 'E:\Projects\demos\workspaces'

13
config.yml.example Normal file
View File

@ -0,0 +1,13 @@
env: dev
http:
port: 7122
db:
postgres:
host: 192.168.31.194
port: 5432
database: fennec
username: fennec
password:
workspaces:
root: '/Users/ivanli/Projects/fennec/workspaces'

View File

@ -12,7 +12,7 @@ describe('ReposResolver', () => {
resolver = module.get<ReposResolver>(ReposResolver); resolver = module.get<ReposResolver>(ReposResolver);
}); });
it('should be defined', () => { it('should be defined', () => {
expect(resolver).toBeDefined(); expect(resolver).toBeDefined();
}); });
}); });