Skip to content

Commit

Permalink
fix: let fs generators get all suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: Chapman Pendery <[email protected]>
  • Loading branch information
cpendery committed Sep 5, 2024
1 parent e296b67 commit 0aae1d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/runtime/runtime.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const commandSuggestionsData = [
},
{ name: "gitStat", command: "git stat", maxSuggestions: 1, expectedNames: ["status"], expectedIcons: [SuggestionIcons.Subcommand] }, // subcommand generator
{ name: "gitStatus", command: "git status ", expectedNames: ["demo.ts"] }, // script + post-process generator
{ name: "ls", command: "ls ", maxSuggestions: 1, expectedNames: [".eslintrc.cjs"], expectedIcons: [SuggestionIcons.File] }, // file generator
{ name: "cd", command: "cd ", maxSuggestions: 1, expectedNames: ["build/"], expectedIcons: [SuggestionIcons.Folder] }, // folder generator
{ name: "ls", command: "ls ", expectedNames: [".eslintrc.cjs"], expectedIcons: [SuggestionIcons.File] }, // file generator
{ name: "cd", command: "cd ", expectedNames: ["build/"], expectedIcons: [SuggestionIcons.Folder] }, // folder generator
{ name: "find", command: "find -", maxSuggestions: 1, expectedIcons: [SuggestionIcons.Option] }, // filtering file generator
{ name: "goTool", command: "go build -buildmode ", maxSuggestions: 1, expectedNames: ["archive"] }, // script + split-on generator
{ name: "preCommitRun", command: "pre-commit run ", maxSuggestions: 1, expectedIcons: [SuggestionIcons.Option] }, // script + post-process generator w/ console logs
Expand Down

0 comments on commit 0aae1d6

Please sign in to comment.