-
Notifications
You must be signed in to change notification settings - Fork 1
refactor(core): 1.0.0-alpha #41
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
Draft
ElijahKotyluk
wants to merge
42
commits into
master
Choose a base branch
from
refactor/core-v1-alpha
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 11 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
e5fc2b4
fix(test): Rewrite run method to better handle function timeouts.. Up…
ElijahKotyluk 3af00c5
test(snapshot): update snapshots.
ElijahKotyluk 008ee7e
chore(merge): pull master.
ElijahKotyluk 9e5440c
style(test): lint fix.
ElijahKotyluk 7471f92
style(interface): remove non-null assertion.
ElijahKotyluk e42b184
test(suite): update snapshots.
ElijahKotyluk 650bfe0
test(interface): fix possibly null prop.
ElijahKotyluk 94514f4
refactor(suite): clean up suite class. Remove skip from bail test.
ElijahKotyluk bebf8f1
fix(test): clear timeout in wait promise chain.
ElijahKotyluk d9f2fb4
style(test): lint fix.
ElijahKotyluk e6a4ebf
test(suite): split bail tests into two, one for sequential, one for n…
ElijahKotyluk efa4c18
chore(suite): fix spacing.
ElijahKotyluk 7175f70
Merge branch 'master' into refactor/core-v1-alpha
ElijahKotyluk bcc4f4a
test(test): clear timers at end of timeout test.
ElijahKotyluk 34d860d
chore(test-spec): update comment for timeout test.
ElijahKotyluk bbfa7a0
fix(test): remove await from fn when racing promise against timeout.
ElijahKotyluk 74f1c54
refactor(runnable): make runnable an abstract class, remove events an…
ElijahKotyluk 6893b76
test(runnable): start testing abstract class.
ElijahKotyluk 403cd68
refactor(runnable): update runnable class and tests. Update result ty…
ElijahKotyluk a3b3c94
refactor(runnable): make doFail always take an error.
ElijahKotyluk a540717
Merge branch 'master' into refactor/core-v1-alpha
ElijahKotyluk df63892
chore(core): misc changes.
ElijahKotyluk 7e3b2c4
Merge branch 'refactor/core-v1-alpha' of github.com:onyxjs/onyx into …
ElijahKotyluk 77e357c
chore(configs): update ts and jest.
ElijahKotyluk fb7e5a0
refactor(test): rewrite test class, runnable class, and tests. Commen…
ElijahKotyluk a8d7757
test(core): skip files that have not been refactored.
ElijahKotyluk 3bb9ff9
refactor(test): rewrite test class.
ElijahKotyluk 4eda7c3
refactor(suite): rewrite run method.
ElijahKotyluk 097457c
chore(core): remove utils.ts and types.ts.
ElijahKotyluk 554c493
feat(utils): add utils.
ElijahKotyluk 844363c
feat(errors): add internal error classes.
ElijahKotyluk 1abd6bd
feat(types): add types directory.
ElijahKotyluk 3fbd310
chore(snapshots): remove old snapshots.
ElijahKotyluk 384b73b
chore(core): WIP, circular dependencies from core class imports.
ElijahKotyluk d5fecdc
fix(suite): export isSuite and rootSymbol.
ElijahKotyluk 0200e16
test(Test): fix should fail.
ElijahKotyluk 6085412
feat(runnable): add isStatus method.
ElijahKotyluk 45ec3b3
refactor(result): remove properties, update addErrors method.
ElijahKotyluk aeff41d
refactor(runnable): add isPending method, update concatenated return …
ElijahKotyluk da35643
refactor(result): make result type generic based on test type. add cr…
ElijahKotyluk e4e5e68
test(result): reintroduce result class tests.
ElijahKotyluk 41e63a8
Merge branch 'master' into refactor/core-v1-alpha
ElijahKotyluk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it all commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am rethinking the Runner class entirely. I am aiming for generator + co-routines.