-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added code changes for project detection
- Loading branch information
1 parent
f062164
commit 33e5f92
Showing
2 changed files
with
12 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
import { WebDriver, VSBrowser } from 'vscode-extension-tester'; | ||
import * as utils from './utils/testUtils'; | ||
|
||
|
||
|
||
describe('Open Gradle Project - Project name with space', () => { | ||
|
||
let driver: WebDriver; | ||
utils.renameProject(); | ||
|
||
before(() => { | ||
utils.renameProject(); | ||
driver = VSBrowser.instance.driver; | ||
|
||
}); | ||
|
||
it('Open Sample Gradle Project - Project name with space', async () => { | ||
|
||
await VSBrowser.instance.openResources(utils.getNewGradleProjectNameWithSpace()); | ||
|
||
}).timeout(25000); | ||
|
||
|
||
it('Open Sample Gradle Project - Project name with space', async () => { | ||
await utils.delay(8000); | ||
await VSBrowser.instance.openResources(utils.getNewGradleProjectNameWithSpace()); | ||
}).timeout(25000); | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters