-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:leancodepl/patrol into feature/su…
…pport-macos
- Loading branch information
Showing
7 changed files
with
23 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Add prioritized issues to project | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/leancodepl/projects/6 | ||
github-token: ${{ github.token }} | ||
labeled: P0, P1, P2 | ||
label-operator: OR |
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 |
---|---|---|
|
@@ -63,7 +63,7 @@ testWidgets('signs up', (WidgetTester tester) async { | |
to this: | ||
|
||
```dart | ||
patrolTest('signs up', (PatrolTester $) async { | ||
patrolTest('signs up', (PatrolIntegrationTester $) async { | ||
await $.pumpWidgetAndSettle(AwesomeApp()); | ||
await $(#emailTextField).enterText('[email protected]'); | ||
|
@@ -96,7 +96,7 @@ Patrol's native automation feature solves these problems: | |
|
||
```dart | ||
void main() { | ||
patrolTest('showtime', nativeAutomation: true, (PatrolTester $) async { | ||
patrolTest('showtime', (PatrolIntegrationTester $) async { | ||
await $.pumpWidgetAndSettle(AwesomeApp()); | ||
// prepare network conditions | ||
await $.native.enableCellular(); | ||
|
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
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
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
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
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