formatting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Timo Hocker
2021-05-10 12:41:00 +02:00
parent e7ad5656e3
commit 3bc5538a69
4 changed files with 8 additions and 8 deletions

View File

@ -59,7 +59,7 @@ export function assert_keystore_state (): void {
}
/* eslint-enable dot-notation */
export function clock_setup ():void {
export function clock_setup (): void {
assert_keystore_state ();
const date = (new Date);
@ -70,7 +70,7 @@ export function clock_setup ():void {
.mockDate (date);
}
export function clock_finalize ():void {
export function clock_finalize (): void {
jasmine.clock ()
.tick (30 * 24 * 60 * 60 * 1000);
// eslint-disable-next-line dot-notation

View File

@ -20,7 +20,7 @@ describe ('key store', () => {
clock_finalize ();
});
const keys: {key:string, sign:string, iat:number}[] = [];
const keys: {key: string, sign: string, iat: number}[] = [];
it ('should generate a new key', async () => {
const iat = (new Date)