-
Notifications
You must be signed in to change notification settings - Fork 24
Add package scripts and cli library, enable integration testing #536
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
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
7e1bce9
pretest working
jaggederest c693a46
enable vscode-test and bump tsconfig to modern settings
jaggederest 240b649
Merge branch 'main' into jaggederest/integration_tests
jaggederest 0e58a31
test: fix integration tests to run without Remote SSH extension
jaggederest 872b7e8
Merge remote-tracking branch 'origin/jaggederest/integration_tests' i…
jaggederest 01c2d80
autocorrect formatting
jaggederest 8ddbf26
bump node version to 22
jaggederest 9b74df4
fix: configure Vitest to properly exclude VS Code integration tests
jaggederest adec211
whitespace
jaggederest d9b543a
fix: update tsconfig.json and convert pretty-bytes imports to standar…
jaggederest a7afdd6
Remove testmode flag in favor of checking existence of remote ssh ext…
jaggederest 3097d8f
remove superfluous async, enable lint rule
jaggederest a2d2bc8
fix: resolve ESLint @typescript-eslint/require-await errors
jaggederest 32dfda4
Update configurations and remove pointless Promise.all
jaggederest 12b0124
Tweak eslint config to better handle json/md, remove compile-tests sc…
jaggederest 3ee92fe
remove extraneous async/await
jaggederest 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
fix: update tsconfig.json and convert pretty-bytes imports to standar…
…d ES6 - Updated tsconfig.json to use CommonJS module system with proper ES module interop - Converted dynamic imports of pretty-bytes to standard ES6 imports in remote.ts and storage.ts - Added integration test command to CLAUDE.md documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Loading branch information
commit d9b543ad443a3357b5a79c952bfd04ebfc9692bc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "Node16", | ||
"module": "commonjs", | ||
"target": "ES2022", | ||
"moduleResolution": "node", | ||
jaggederest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"outDir": "out", | ||
// "dom" is required for importing the API from coder/coder. | ||
"lib": ["ES2022", "dom"], | ||
"sourceMap": true, | ||
"strict": true, | ||
"skipLibCheck": true | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
jaggederest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"exclude": ["vitest.config.ts"] | ||
"exclude": ["node_modules", "vitest.config.ts"], | ||
jaggederest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"include": ["src/**/*"] | ||
} |
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.