File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import prettier from "@prettier/sync" ;
2
2
import { prepareOptions } from "bingo" ;
3
- import { intake } from "bingo-fs" ;
3
+ import { intake , IntakeDirectory } from "bingo-fs" ;
4
4
import { producePreset } from "bingo-stratum" ;
5
5
import { diffCreatedDirectory } from "bingo-testers" ;
6
6
import { expect , test } from "vitest" ;
@@ -35,9 +35,9 @@ import {
35
35
// For example, if you change blockTypeScript's target from "ES2022 to "ES2023",
36
36
// you'll also need to update the ./tsconfig.json on disk in the same way.
37
37
test ( "Producing the everything preset matches the files in this repository" , async ( ) => {
38
- const actual = await intake ( "." , {
38
+ const actual = ( await intake ( "." , {
39
39
exclude : / n o d e _ m o d u l e s | ^ \. g i t $ / ,
40
- } ) ;
40
+ } ) ) as IntakeDirectory ;
41
41
42
42
const created = producePreset ( presets . everything , {
43
43
addons : [
You can’t perform that action at this time.
0 commit comments