Skip to content

Commit 057fafd

Browse files
committed
Moving fixes
1 parent 1dfd511 commit 057fafd

File tree

12 files changed

+267
-277
lines changed

12 files changed

+267
-277
lines changed

.github/workflows/dart.yml

Lines changed: 242 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ literate API.
1717
| Package | Description | Version |
1818
|---|---|---|
1919
| [checks](pkgs/checks/) | A framework for checking values against expectations and building custom expectations. | [![pub package](https://img.shields.io/pub/v/checks.svg)](https://pub.dev/packages/checks) |
20+
| [fake_async](pkgs/fake_async/) | Fake asynchronous events such as timers and microtasks for deterministic testing. | [![pub package](https://img.shields.io/pub/v/fake_async.svg)](https://pub.dev/packages/fake_async) |
2021
| [test](pkgs/test/) | A full featured library for writing and running Dart tests across platforms. | [![pub package](https://img.shields.io/pub/v/test.svg)](https://pub.dev/packages/test) |
2122
| [test_api](pkgs/test_api/) | | [![pub package](https://img.shields.io/pub/v/test_api.svg)](https://pub.dev/packages/test_api) |
2223
| [test_core](pkgs/test_core/) | | [![pub package](https://img.shields.io/pub/v/test_core.svg)](https://pub.dev/packages/test_core) |

pkgs/fake_async/.github/dependabot.yml

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

pkgs/fake_async/.github/workflows/no-response.yml

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

pkgs/fake_async/.github/workflows/publish.yaml

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

pkgs/fake_async/.github/workflows/test-package.yml

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

pkgs/fake_async/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
## 1.3.2-wip
1+
## 1.3.2
22

33
* Require Dart 3.3
44
* Fix bug where a `flushTimers` or `elapse` call from within
55
the callback of a periodic timer would immediately invoke
66
the same timer.
7+
* Move to `dart-lang/test` monorepo.
8+
* Require Dart 3.5.
79

810
## 1.3.1
911

pkgs/fake_async/CONTRIBUTING.md

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

pkgs/fake_async/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Dart CI](https://github.com/dart-lang/fake_async/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/fake_async/actions/workflows/test-package.yml)
21
[![pub package](https://img.shields.io/pub/v/fake_async.svg)](https://pub.dev/packages/fake_async)
32
[![package publisher](https://img.shields.io/pub/publisher/fake_async.svg)](https://pub.dev/packages/fake_async/publisher)
43

pkgs/fake_async/mono_pkg.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See https://pub.dev/packages/mono_repo
2+
3+
stages:
4+
- analyze_and_format:
5+
- group:
6+
- format
7+
- analyze: --fatal-infos
8+
sdk: dev
9+
- group:
10+
- analyze
11+
sdk: pubspec
12+
- unit_test:
13+
- group:
14+
- command: dart test
15+
sdk: [dev, pubspec]

0 commit comments

Comments
 (0)