mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
refactor: support inrupt coding standards
This commit is contained in:
5
test/.eslintrc.js
Normal file
5
test/.eslintrc.js
Normal file
@@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
jest: true
|
||||
}
|
||||
};
|
||||
@@ -1,5 +1,5 @@
|
||||
describe('A basic test', () => {
|
||||
it('to have something pass', () => {
|
||||
describe('A basic test', (): void => {
|
||||
it('to have something pass.', async (): Promise<void> => {
|
||||
expect(true).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user