Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: libp2p/js-libp2p
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cda147971a00bac9aac18fe5b1681eaa010ec066
Choose a base ref
..
head repository: libp2p/js-libp2p
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a3406a0536f8e7390e67eec88ccc518bd90e9a6
Choose a head ref
Showing with 2 additions and 1 deletion.
  1. +2 −1 packages/utils/test/debounce.spec.ts
3 changes: 2 additions & 1 deletion packages/utils/test/debounce.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { stop } from '@libp2p/interface'
import { expect } from 'aegir/chai'
import delay from 'delay'
import { debounce } from '../src/debounce.js'
@@ -36,7 +37,7 @@ describe('debounce', () => {
debounced()
debounced()

debounced.stop()
await stop(debounced)

await delay(500)