Skip to content

Commit 211491b

Browse files
chore: fix type error in integration.test.ts
1 parent 5fc0276 commit 211491b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/integration.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import prettier from "@prettier/sync";
22
import { prepareOptions } from "bingo";
3-
import { intake } from "bingo-fs";
3+
import { intake, IntakeDirectory } from "bingo-fs";
44
import { producePreset } from "bingo-stratum";
55
import { diffCreatedDirectory } from "bingo-testers";
66
import { expect, test } from "vitest";
@@ -35,9 +35,9 @@ import {
3535
// For example, if you change blockTypeScript's target from "ES2022 to "ES2023",
3636
// you'll also need to update the ./tsconfig.json on disk in the same way.
3737
test("Producing the everything preset matches the files in this repository", async () => {
38-
const actual = await intake(".", {
38+
const actual = (await intake(".", {
3939
exclude: /node_modules|^\.git$/,
40-
});
40+
})) as IntakeDirectory;
4141

4242
const created = producePreset(presets.everything, {
4343
addons: [

0 commit comments

Comments
 (0)