-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Workiva/dart2
AF-1874 Dart 2 compatibility
- Loading branch information
Showing
4 changed files
with
66 additions
and
17 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
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,47 @@ | ||
# Dart 1: | ||
# ------- | ||
# | ||
# Run unit tests: | ||
# | ||
# $ pub run test | ||
# | ||
# Run integration tests: | ||
# | ||
# $ node tool/server.js | ||
# $ pub run test -P integration | ||
# | ||
# | ||
# Dart 2: | ||
# ------- | ||
# | ||
# Run unit tests: | ||
# | ||
# $ pub run build_runner test | ||
# | ||
# Run integration tests: | ||
# | ||
# $ node tool/server.js | ||
# $ pub run build_runner test -- -P integration | ||
platforms: | ||
- chrome | ||
|
||
paths: | ||
- test/xhr_streaming_test.dart | ||
|
||
presets: | ||
all: | ||
concurrency: 1 | ||
paths: | ||
- test/xhr_streaming_test.dart | ||
- test/sockjs_client_integration_test.dart | ||
|
||
integration: | ||
concurrency: 1 | ||
paths: | ||
- test/sockjs_client_integration_test.dart | ||
|
||
travis: | ||
reporter: expanded | ||
# The SockJS integration test server sometimes gets overloaded and rejects | ||
# connections. Retries are enabled during CI to mitigate these failures. | ||
retry: 3 |
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