Skip to content

Commit

Permalink
Import test dependencies from index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbetz committed Nov 19, 2022
1 parent 06d729b commit b68baee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions __tests__/hashpool.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import HashPool from '../src/hashpool';
import Pool from '../src/pool';
import { HashPool, Pool } from '../src';

describe( 'hashpool', () => {
it( 'should correctly shutdown hash pool', async () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/memcached.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Memcached from '../src/memcached';
import { Memcached } from '../src';

describe( 'connection', () => {
it( 'should correctly acquire a memcached connection', async () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/pool.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Pool from '../src/pool';
import { Pool } from '../src';

describe( 'pool', () => {
it( 'should correctly set pool configuration', async () => {
Expand Down

0 comments on commit b68baee

Please sign in to comment.