Skip to content

Commit

Permalink
style: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emmacasolin committed Jul 25, 2022
1 parent ee0b9e2 commit 158c0c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/workers/efsWorker.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import type { EFSWorkerManagerInterface, EFSWorkerModule } from '@/types';

import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import { WorkerManager } from '@matrixai/workers';
import { spawn, Worker, Transfer } from 'threads';
import * as utils from '@/utils';

describe('EFS worker', () => {
const logger = new Logger('EFS Worker Test', LogLevel.WARN, [
new StreamHandler(),
]);
// EFS logger is incompatible with js-workers logger until we update here to 3.0.0
// const logger = new Logger('EFS Worker Test', LogLevel.WARN, [
// new StreamHandler(),
// ]);
let workerManager: EFSWorkerManagerInterface;
let key: Buffer;
beforeAll(async () => {
Expand Down

0 comments on commit 158c0c7

Please sign in to comment.