Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Jul 4, 2024
1 parent 16e4c3a commit 94543a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/async/all.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as _ from 'radashi'
import { AggregateError } from 'radashi'
import type { AggregateError } from 'radashi'

describe('all', () => {
const promise = {
Expand Down
2 changes: 1 addition & 1 deletion tests/async/parallel.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as _ from 'radashi'
import { AggregateError } from 'radashi'
import type { AggregateError } from 'radashi'

describe('parallel', () => {
test('returns all results from all functions', async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/async/retry.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as _ from 'radashi'
import { RetryOptions } from 'radashi'
import type { RetryOptions } from 'radashi'

const cast = <T = RetryOptions>(value: any): T => value

Expand Down
2 changes: 1 addition & 1 deletion tests/curry/debounce.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as _ from 'radashi'
import { DebounceFunction } from 'radashi'
import type { DebounceFunction } from 'radashi'

describe('debounce', () => {
let func: DebounceFunction<any>
Expand Down

0 comments on commit 94543a4

Please sign in to comment.