-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: use mocha instead of jest to avoid hacks #208
Merged
Conversation
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
byCedric
force-pushed
the
@bycedric/refactor/use-mocha-instead-of-jest
branch
2 times, most recently
from
August 30, 2023 15:43
ef333c2
to
99d309c
Compare
byCedric
force-pushed
the
@bycedric/refactor/use-mocha-instead-of-jest
branch
from
August 30, 2023 15:44
99d309c
to
c1b2acb
Compare
byCedric
changed the title
refactor: use mocha instead of jest to avoid needing hacks
refactor: use mocha instead of jest to avoid hacks
Aug 30, 2023
byCedric
force-pushed
the
@bycedric/refactor/use-mocha-instead-of-jest
branch
2 times, most recently
from
August 30, 2023 16:46
59805a0
to
3b4ab52
Compare
byCedric
force-pushed
the
@bycedric/refactor/use-mocha-instead-of-jest
branch
from
August 30, 2023 16:53
3b4ab52
to
238b12b
Compare
byCedric
force-pushed
the
@bycedric/refactor/use-mocha-instead-of-jest
branch
from
August 30, 2023 18:04
b8ef33d
to
f20b2fb
Compare
expo-bot
added a commit
that referenced
this pull request
Sep 1, 2023
## [1.1.0](1.0.7...1.1.0) (2023-09-01) ### New features * allow `expo.*` properties as root properties without `expo` definition ([#217](#217)) ([c71ccbc](c71ccbc)) ### Bug fixes * downgrade conventional commit preset for semantic release ([d392f89](d392f89)) * replace yarn with npm due to issues with `@isaacs/cliui` ([#209](#209)) ([f046f1d](f046f1d)) ### Code changes * bump minimum vscode version to `1.78.2` ([#211](#211)) ([602946c](602946c)) * consolidate the testing fixtures ([#218](#218)) ([fe00632](fe00632)) * use mocha instead of jest to avoid crashes and other issues ([#208](#208)) ([92352ac](92352ac)) * use proper `dependencies` instead of `devDependencies` only ([#214](#214)) ([d0f60eb](d0f60eb)) ### Other chores * add missing `permissions` to github workflow when dry-running release ([#205](#205)) ([7a78a92](7a78a92)) * allow dry-run to test push verification in release workflow ([a9b6c92](a9b6c92)) * clean up log-clutter in test output ([#215](#215)) ([9f03f24](9f03f24)) * clean up typo in `.gitignore` ([3bb248d](3bb248d)) * clean up yarn-specific workarounds ([36093a0](36093a0)) * upgrade tooling to latest versions ([#212](#212)) ([0324b10](0324b10))
expo-bot
added a commit
that referenced
this pull request
Sep 1, 2023
## [1.1.0](1.0.7...1.1.0) (2023-09-01) ### New features * allow `expo.*` properties as root properties without `expo` definition ([#217](#217)) ([c71ccbc](c71ccbc)) ### Bug fixes * downgrade conventional commit preset for semantic release ([d392f89](d392f89)) * replace yarn with npm due to issues with `@isaacs/cliui` ([#209](#209)) ([f046f1d](f046f1d)) ### Code changes * bump minimum vscode version to `1.78.2` ([#211](#211)) ([602946c](602946c)) * consolidate the testing fixtures ([#218](#218)) ([fe00632](fe00632)) * use mocha instead of jest to avoid crashes and other issues ([#208](#208)) ([92352ac](92352ac)) * use proper `dependencies` instead of `devDependencies` only ([#214](#214)) ([d0f60eb](d0f60eb)) ### Other chores * add missing `permissions` to github workflow when dry-running release ([#205](#205)) ([7a78a92](7a78a92)) * add prerelease support in publish workflow ([6f8240e](6f8240e)) * allow dry-run to test push verification in release workflow ([a9b6c92](a9b6c92)) * clean up log-clutter in test output ([#215](#215)) ([9f03f24](9f03f24)) * clean up typo in `.gitignore` ([3bb248d](3bb248d)) * clean up yarn-specific workarounds ([36093a0](36093a0)) * emphasize the creation of a release instead of publish ([0eed055](0eed055)) * upgrade tooling to latest versions ([#212](#212)) ([0324b10](0324b10)) * use authenticated Expo bot user for schema updates ([c91af9c](c91af9c))
🎉 This PR is included in version 1.1.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Linked issue
This pulls Jest from the testing setup, and replaces it with Mocha. The reason for this are: