Skip to content

Commit

Permalink
Fix type issues in create-rule-instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniilsapa committed Sep 7, 2024
1 parent 097cf61 commit 78744ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('createRuleInstructions', () => {
},
]

const result = createRuleInstructions(config)
const result = createRuleInstructions(config, '')

expect(result).toEqual({
rule1: {
Expand Down Expand Up @@ -73,7 +73,7 @@ describe('createRuleInstructions', () => {
},
]

expect(createRuleInstructions(config)).toEqual({
expect(createRuleInstructions(config, '')).toEqual({
rule1: {
options: null,
globGroups: [
Expand Down

0 comments on commit 78744ad

Please sign in to comment.