Skip to content

Commit

Permalink
Merge pull request #21 from dpanshug/run-all-bug
Browse files Browse the repository at this point in the history
Run all bug solved
  • Loading branch information
dpanshug authored Dec 4, 2024
2 parents cf885cc + 750f810 commit 61b2933
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to the "Cypress Test Explorer" extension will be documented in this file.

## [1.0.3] - 2024-04-12

### Fixed

- Bug inside run all

## [1.0.2] - 2024-04-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/dpanshug/cypress-test-explorer"
},
"description": "The ultimate tool for managing and running your Cypress tests directly within Visual Studio Code.",
"version": "1.0.2",
"version": "1.0.3",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.60.0"
Expand Down
2 changes: 1 addition & 1 deletion src/features/testExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export class TestExplorer {
const startingFolder = vscode.workspace
.getConfiguration('cypressTestExplorer')
.get('startingFolder', '');
const specPattern = startingFolder ? `"${startingFolder}/**/*.cy.{js,ts}"` : '';
const specPattern = startingFolder ? `'${startingFolder}/*.cy.{js,ts}'` : '';
const command = this.getCypressCommand(specPattern);

this.testQueue.push({ command, testName: 'All Tests' });
Expand Down

0 comments on commit 61b2933

Please sign in to comment.