refactor: support inrupt coding standards

This commit is contained in:
Joachim Van Herwegen
2020-05-20 17:27:54 +02:00
parent 5def53180c
commit f8e136cadb
25 changed files with 722 additions and 604 deletions

5
test/.eslintrc.js Normal file
View File

@@ -0,0 +1,5 @@
module.exports = {
env: {
jest: true
}
};

View File

@@ -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();
});
});