Skip to content

Commit 57dc726

Browse files
chore(global): fix test return type
1 parent 3f1db84 commit 57dc726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mono-pub/src/utils/path.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getAllPackages } from './path'
33

44
const cwd = path.join(__dirname, '../../../..', 'test-examples', 'filtering')
55

6-
function expectContainingPackages(packages: Array<string>, scope?: string): void {
6+
function expectContainingPackages(packages: Array<string>, scope?: string) {
77
return expect.arrayContaining(
88
packages.map((pkg) => ({
99
name: scope ? `@${scope}/${pkg}` : pkg,

0 commit comments

Comments
 (0)