Skip to content

Commit

Permalink
refactor: rename test file
Browse files Browse the repository at this point in the history
Seeing as the thing we're exercising the pool.
  • Loading branch information
wincent committed Apr 17, 2024
1 parent 8a3763f commit 6cdf2d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import {nullthrows} from '@masochist/common';
import {afterAll, beforeAll, describe, expect, it} from 'bun:test';
import assert from 'node:assert';

import RedisConnectionPool from '../redis/RedisConnectionPool';
import RedisConnectionPool from '../RedisConnectionPool';

import type {WritableSubprocess} from 'bun';

const PORT = process.env['GITHUB_ACTIONS'] ? 6379 : 7777;

describe('redis', () => {
describe('RedisConnectionPool()', () => {
let server: WritableSubprocess | null = null;
let pool: RedisConnectionPool | null = null;

Expand Down

0 comments on commit 6cdf2d4

Please sign in to comment.