Skip to content

Commit

Permalink
fix: tests imports, using @
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
addievo committed Sep 14, 2023
1 parent 7d19ef5 commit 56f299d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions tests/RPC.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import * as rpcErrors from '@/errors';
import RPCClient from '@/RPCClient';
import RPCServer from '@/RPCServer';
import * as utils from '@/utils';
import DuplexHandler from '@/handlers/DuplexHandler';
import RawHandler from '@/handlers/RawHandler';
import ServerHandler from '@/handlers/ServerHandler';
import UnaryHandler from '@/handlers/UnaryHandler';
import ClientHandler from '@/handlers/ClientHandler';
import * as rpcTestUtils from './utils';
import DuplexHandler from '../src/handlers/DuplexHandler';
import RawHandler from '../src/handlers/RawHandler';
import ServerHandler from '../src/handlers/ServerHandler';
import UnaryHandler from '../src/handlers/UnaryHandler';
import ClientHandler from '../src/handlers/ClientHandler';

describe('RPC', () => {
const logger = new Logger(`RPC Test`, LogLevel.WARN, [new StreamHandler()]);
Expand Down
10 changes: 5 additions & 5 deletions tests/RPCServer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import * as rpcErrors from '@/errors/errors';
import * as rpcUtils from '@/utils';
import { promise, sleep } from '@/utils';
import * as rpcUtilsMiddleware from '@/utils/middleware';
import ServerHandler from '@/handlers/ServerHandler';
import DuplexHandler from '@/handlers/DuplexHandler';
import RawHandler from '@/handlers/RawHandler';
import UnaryHandler from '@/handlers/UnaryHandler';
import ClientHandler from '@/handlers/ClientHandler';
import * as rpcTestUtils from './utils';
import ServerHandler from '../src/handlers/ServerHandler';
import DuplexHandler from '../src/handlers/DuplexHandler';
import RawHandler from '../src/handlers/RawHandler';
import UnaryHandler from '../src/handlers/UnaryHandler';
import ClientHandler from '../src/handlers/ClientHandler';

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

0 comments on commit 56f299d

Please sign in to comment.