diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-13 10:15:38 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-01-13 10:15:38 +0100 |
commit | c9c43612d528d8ff3132efa8d0eb4541ea651f5e (patch) | |
tree | 879cf05ce7e53b12a1bd2497bb3385fd1a481a8b /server | |
parent | f5961a8cdfca43ffee00aea2d14302b00d356d07 (diff) | |
download | PeerTube-c9c43612d528d8ff3132efa8d0eb4541ea651f5e.tar.gz PeerTube-c9c43612d528d8ff3132efa8d0eb4541ea651f5e.tar.zst PeerTube-c9c43612d528d8ff3132efa8d0eb4541ea651f5e.zip |
Fix lint
Diffstat (limited to 'server')
-rw-r--r-- | server/tests/api/server/logs.ts | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/server/tests/api/server/logs.ts b/server/tests/api/server/logs.ts index c458789b6..6b1eb776c 100644 --- a/server/tests/api/server/logs.ts +++ b/server/tests/api/server/logs.ts | |||
@@ -1,11 +1,19 @@ | |||
1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ | 1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ |
2 | 2 | ||
3 | import * as chai from 'chai' | ||
4 | import 'mocha' | 3 | import 'mocha' |
5 | import { cleanupTests, flushAndRunServer, killallServers, makeGetRequest, makePingRequest, reRunServer, ServerInfo, setAccessTokensToServers } from '../../../../shared/extra-utils/index' | 4 | import * as chai from 'chai' |
5 | import { | ||
6 | cleanupTests, | ||
7 | flushAndRunServer, | ||
8 | killallServers, | ||
9 | makePingRequest, | ||
10 | reRunServer, | ||
11 | ServerInfo, | ||
12 | setAccessTokensToServers | ||
13 | } from '../../../../shared/extra-utils/index' | ||
14 | import { getAuditLogs, getLogs } from '../../../../shared/extra-utils/logs/logs' | ||
6 | import { waitJobs } from '../../../../shared/extra-utils/server/jobs' | 15 | import { waitJobs } from '../../../../shared/extra-utils/server/jobs' |
7 | import { uploadVideo } from '../../../../shared/extra-utils/videos/videos' | 16 | import { uploadVideo } from '../../../../shared/extra-utils/videos/videos' |
8 | import { getAuditLogs, getLogs } from '../../../../shared/extra-utils/logs/logs' | ||
9 | 17 | ||
10 | const expect = chai.expect | 18 | const expect = chai.expect |
11 | 19 | ||