Skip to content

Commit

Permalink
refactor: test helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Nov 3, 2024
1 parent b7e0c1b commit 8bfe287
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib/anyware/main.entrypoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { describe, expect, test } from 'vitest'
import type { ContextualAggregateError } from '../errors/ContextualAggregateError.js'
import { run } from './specHelpers.js'
import { run } from './__.test-helpers.js'

describe(`invalid destructuring cases`, () => {
test(`noParameters`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/anyware/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { describe, expect, test, vi } from 'vitest'
import { Errors } from '../errors/__.js'
import type { ContextualError } from '../errors/ContextualError.js'
import { Anyware } from './__.js'
import { core, createHook, initialInput, oops, run, runWithOptions } from './__.test-helpers.js'
import { createRetryingExtension } from './main.js'
import { core, createHook, initialInput, oops, run, runWithOptions } from './specHelpers.js'

describe(`no extensions`, () => {
test(`passthrough to implementation`, async () => {
Expand Down

0 comments on commit 8bfe287

Please sign in to comment.