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

Commit a1eeae2

Browse files
authored
Merge pull request #5 from react-native-windows/pipeline
delete calclulator and update pipeline
2 parents 6ff8e8c + dec4bc8 commit a1eeae2

File tree

5 files changed

+25
-40
lines changed

5 files changed

+25
-40
lines changed

.gitmodules

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

azure-pipelines.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
trigger: none # will disable CI builds entirely
2+
3+
pr:
4+
- master
5+
6+
pool:
7+
vmImage: 'windows-2019'
8+
9+
steps:
10+
11+
- checkout: self
12+
clean: true
13+
lfs: false
14+
persistCredentials: false
15+
16+
- task: CmdLine@2
17+
displayName: yarn install
18+
inputs:
19+
script: yarn install
20+
21+
- task: CmdLine@2
22+
displayName: yarn run prepublishOnly
23+
inputs:
24+
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)