-
Notifications
You must be signed in to change notification settings - Fork 284
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
Type check test files #248
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8ce01f2
Rename all tsconfig.dest.json to tsconfig.json
spalladino 5d9a6d4
Rename all instances of tsconfig.dest.json to tsconfig.json
spalladino d4292ad
Ignore tsbuildinfo
spalladino ca575d1
Fix jest types
spalladino 2545476
Move anvil tests into src and skip for now
spalladino ec3922b
Do not exclude test folders
spalladino 1260061
Rename package.scripts to package.common
spalladino e79ac53
Remove explicit reference to tsconfig in project references
spalladino c609b7f
Handle non-objects in update_package_jsons
spalladino 31c3b72
Add files and types entries to all packages
spalladino 2715f10
Remove tsbuildinfo
spalladino 55191d5
Fix jest config for aztec-rpc
spalladino fe95fff
Fix jest config for aztec-node
spalladino fb4cda7
Add types patch to dockerfiles
spalladino e75be5a
Drop tsconfig.json from build command since we're using the default
spalladino 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 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 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 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,10 @@ | ||
// See https://github.com/DefinitelyTyped/DefinitelyTyped/pull/64936/files | ||
declare namespace jest { | ||
/** | ||
* Replaces property on an object with another value. | ||
* | ||
* @remarks | ||
* For mocking functions, and 'get' or 'set' accessors, use `jest.spyOn()` instead. | ||
*/ | ||
function replaceProperty<T extends {}, K extends keyof T>(obj: T, key: K, value: T[K]): ReplaceProperty<T[K]>; | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"extends": "..", | ||
"compilerOptions": { | ||
"outDir": "dest", | ||
"rootDir": "src", | ||
"tsBuildInfoFile": ".tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../barretenberg.js" | ||
}, | ||
{ | ||
"path": "../circuits.js" | ||
}, | ||
{ | ||
"path": "../foundation" | ||
}, | ||
{ | ||
"path": "../merkle-tree" | ||
}, | ||
{ | ||
"path": "../noir-contracts" | ||
} | ||
], | ||
"include": ["src"] | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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.
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.
nit: -p tsconfig.json can also be simplified