Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 16, 2024
1 parent 1dfd511 commit 057fafd
Show file tree
Hide file tree
Showing 12 changed files with 267 additions and 277 deletions.
326 changes: 242 additions & 84 deletions .github/workflows/dart.yml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ literate API.
| Package | Description | Version |
|---|---|---|
| [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) |
| [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) |
| [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) |
| [test_api](pkgs/test_api/) | | [![pub package](https://img.shields.io/pub/v/test_api.svg)](https://pub.dev/packages/test_api) |
| [test_core](pkgs/test_core/) | | [![pub package](https://img.shields.io/pub/v/test_core.svg)](https://pub.dev/packages/test_core) |
15 changes: 0 additions & 15 deletions pkgs/fake_async/.github/dependabot.yml

This file was deleted.

37 changes: 0 additions & 37 deletions pkgs/fake_async/.github/workflows/no-response.yml

This file was deleted.

17 changes: 0 additions & 17 deletions pkgs/fake_async/.github/workflows/publish.yaml

This file was deleted.

67 changes: 0 additions & 67 deletions pkgs/fake_async/.github/workflows/test-package.yml

This file was deleted.

4 changes: 3 additions & 1 deletion pkgs/fake_async/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
## 1.3.2-wip
## 1.3.2

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

## 1.3.1

Expand Down
51 changes: 0 additions & 51 deletions pkgs/fake_async/CONTRIBUTING.md

This file was deleted.

1 change: 0 additions & 1 deletion pkgs/fake_async/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[![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)
[![pub package](https://img.shields.io/pub/v/fake_async.svg)](https://pub.dev/packages/fake_async)
[![package publisher](https://img.shields.io/pub/publisher/fake_async.svg)](https://pub.dev/packages/fake_async/publisher)

Expand Down
15 changes: 15 additions & 0 deletions pkgs/fake_async/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See https://pub.dev/packages/mono_repo

stages:
- analyze_and_format:
- group:
- format
- analyze: --fatal-infos
sdk: dev
- group:
- analyze
sdk: pubspec
- unit_test:
- group:
- command: dart test
sdk: [dev, pubspec]
9 changes: 5 additions & 4 deletions pkgs/fake_async/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: fake_async
version: 1.3.2-wip
version: 1.3.2
description: >-
Fake asynchronous events such as timers and microtasks for deterministic
testing.
repository: https://github.com/dart-lang/test/tree/main/pkgs/fake_async
repository: https://github.com/dart-lang/test/tree/master/pkgs/fake_async
resolution: workspace

environment:
sdk: ^3.3.0
sdk: ^3.5.0

dependencies:
clock: ^1.1.0
collection: ^1.15.0

dev_dependencies:
async: ^2.5.0
dart_flutter_team_lints: ^2.0.0
dart_flutter_team_lints: ^3.1.0
test: ^1.16.0
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ workspace:
- integration_tests/spawn_hybrid
- integration_tests/wasm
- pkgs/checks
- pkgs/fake_async
- pkgs/test
- pkgs/test_api
- pkgs/test_core
Expand Down

0 comments on commit 057fafd

Please sign in to comment.