Skip to content

Commit

Permalink
Bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Sep 10, 2023
1 parent c6f4994 commit a0c0d71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.3.0] - 2023-09-10

[v0.3.0]: https://github.com/ezzatron/fake-geolocation/releases/tag/v0.3.0

### Added

- Delegate selection can now be queried with `isDelegateSelected()`.
- Wrapped APIs can now be queried with `isUsingSuppliedAPIs()`.

## [v0.2.0] - 2023-09-10

[v0.2.0]: https://github.com/ezzatron/fake-geolocation/releases/tag/v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion test/jest/create-wrapped-apis.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe("createWrappedAPIs()", () => {
});

it("delegates to the fake Permissions API", async () => {
await user.requestPermission({ name: "push" });
await user.requestPermission({ name: "push" });

expect((await permissions.query({ name: "push" })).state).toBe("granted");
});
Expand Down

0 comments on commit a0c0d71

Please sign in to comment.