Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit f2d1a4d

Browse files
committed
delete calclulator and update pipeline
1 parent fdcd140 commit f2d1a4d

File tree

5 files changed

+23
-40
lines changed

5 files changed

+23
-40
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
trigger:
2+
- master
3+
4+
pool:
5+
vmImage: 'windows-2019'
6+
7+
steps:
8+
9+
- checkout: self
10+
clean: true
11+
lfs: false
12+
persistCredentials: false
13+
14+
- task: CmdLine@2
15+
displayName: yarn install
16+
inputs:
17+
script: yarn install
18+
19+
- task: CmdLine@2
20+
displayName: yarn run prepublishOnly
21+
inputs:
22+
script: yarn run prepublishOnly

calculator

Lines changed: 0 additions & 1 deletion
This file was deleted.

example/azure-pipelines.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/pageobject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class PageObject {
2727

2828
waitForPageLoaded(timeout?: number) {
2929
const theTimeout = timeout ? timeout : Config.getWaitForPageTimeout();
30-
this.driver.wait2(
30+
return this.driver.wait2(
3131
() => {
3232
return this.isPageLoaded();
3333
},

0 commit comments

Comments
 (0)