Skip to content

Commit

Permalink
chore: clean up test name and path
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Nov 26, 2023
1 parent 648e3f2 commit 8444459
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/spec/util.spec.ts → src/spec/stream/util.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { describe, expect, test } from 'vitest';
import FsStream from '../lib/stream/FsStream.js';
import ArrayBufferStream from '../lib/stream/ArrayBufferStream.js';
import { openStream } from '../lib/stream/util.js';
import FsStream from '../../lib/stream/FsStream.js';
import ArrayBufferStream from '../../lib/stream/ArrayBufferStream.js';
import { openStream } from '../../lib/stream/util.js';

describe('getStream', () => {
describe('openStream', () => {
test('returns FsStream object when given path to file', () => {
const stream = openStream('./fixture/fixture.bmp');
expect(stream).toBeInstanceOf(FsStream);
Expand Down

0 comments on commit 8444459

Please sign in to comment.