Skip to content

Commit

Permalink
test: run find visual studio tests only on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanStojanovic committed Apr 8, 2024
1 parent a3501e3 commit ddbf1be
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test-find-visualstudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ class TestVisualStudioFinder extends VisualStudioFinder {
}
}

// Only run "Find Visual Studio" tests on Windows.
if (process.platform !== 'win32') {
return
}

describe('find-visualstudio', function () {
this.beforeAll(function () {
// Condition to skip the test suite
Expand Down

0 comments on commit ddbf1be

Please sign in to comment.