Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
gediminasz committed Feb 4, 2024
1 parent bd908e2 commit fb545f9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/commands/runAllTestsInPath.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ beforeEach(() => {
vscode.window.terminals[0]._lastCommand = undefined
vscode.workspace._configuration = {
justTesting: {
baseCommand: "pytest",
runFileCommand: "{base} {fileName}",
baseCommand: 'pytest',
runFileCommand: '{base} {fileName}'
}
}
})
Expand Down Expand Up @@ -37,8 +37,8 @@ describe('runAllTestsInPath', () => {
beforeEach(() => {
vscode.workspace._configuration = {
justTesting: {
baseCommand: "pytest",
runFileCommand: "{base} {module}",
baseCommand: 'pytest',
runFileCommand: '{base} {module}'
}
}
})
Expand All @@ -61,5 +61,4 @@ describe('runAllTestsInPath', () => {
expect(vscode.window.terminals[0]._lastCommand).toBe('pytest tests.foo')
})
})

})

0 comments on commit fb545f9

Please sign in to comment.