-
Notifications
You must be signed in to change notification settings - Fork 0
Typescript testsuite #177
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
Merged
Merged
Typescript testsuite #177
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
9d48261
Added golden tests prelude for TS
3910de1
Basic nix derivations + update flake for Typescript flake
2e2ed98
Code generation bug fixes + runtime fixes for TS
e917194
Code cleanup
c69011e
Improved error messages
7cf7d9b
Removed useless package in ./build.nix
343a1a9
Updated flake inputs
4c6304c
TS lbr-plutus golden tests
96062b5
Add `Map` instances to lbr-plutus-typescript
dc5ee67
Added IsPlutusData List instance to lbr-plutus-typescript
7ceac2c
Update flake.lock
5986a31
Code cleanup
1d806a1
Refactored `lbf-typescript` to return the tgz file directly
bd178bb
Consolidated the repeated derivation for the golden tests
60d3af1
Merge remote-tracking branch 'origin/main' into jared/typescript-test…
9b4d0f5
Merge branch 'main' into jared/typescript-testsuite
jaredponn 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -276,4 +276,4 @@ let | |
| }); | ||
| }); | ||
| in | ||
| lbTypescriptFlake | ||
| lbTypescriptFlake.packages."${name}-typescript-tgz" | ||
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # Ignore the autogenerated files from flake-lang.nix | ||
| .extra-dependencies | ||
| data | ||
| node_modules |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| { inputs, ... }: | ||
| { | ||
| perSystem = { config, system, ... }: | ||
| let | ||
| tsFlake = | ||
| inputs.flake-lang.lib.${system}.typescriptFlake { | ||
| name = "lbt-plutus"; | ||
| src = ./.; | ||
| npmExtraDependencies = [ | ||
| config.packages.lbf-plutus-golden-api-typescript | ||
| ]; | ||
|
|
||
| devShellTools = config.settings.shell.tools; | ||
| devShellHook = config.settings.shell.hook; | ||
|
|
||
| data = | ||
| [ | ||
| { | ||
| name = "lbt-plutus-golden-data"; | ||
| path = config.packages.lbt-plutus-golden-typescript; | ||
| } | ||
| ]; | ||
| }; | ||
| in | ||
| { | ||
| inherit (tsFlake) devShells checks; | ||
| }; | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.