Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
CMCDragonkai committed Sep 12, 2022
1 parent eb4e287 commit 8109199
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/tasks/TaskManager.test.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import type { ContextTimed } from '../../dist/contexts/types';
import type { Task, TaskHandlerId, TaskPath } from '../../src/tasks/types';
import type { PromiseCancellable } from '@matrixai/async-cancellable';
import type { ContextTimed } from '@/contexts/types';
import type { Task, TaskHandlerId, TaskPath } from '@/tasks/types';
import fs from 'fs';
import path from 'path';
import os from 'os';
import { DB } from '@matrixai/db';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as fc from 'fast-check';
import { Lock } from '@matrixai/async-locks';
import * as utils from '@/utils/index';
import { promise, sleep, never } from '@/utils';
import * as fc from 'fast-check';
import TaskManager from '@/tasks/TaskManager';
import * as tasksErrors from '@/tasks/errors';
import * as utils from '@/utils';
import { promise, sleep, never } from '@/utils';

describe(TaskManager.name, () => {
const logger = new Logger(`${TaskManager.name} test`, LogLevel.WARN, [
Expand Down

0 comments on commit 8109199

Please sign in to comment.