-
Notifications
You must be signed in to change notification settings - Fork 7
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
Move test folders #155
Move test folders #155
Conversation
"composite": true | ||
}, | ||
|
||
"include": ["src"], | ||
"include": ["src", "test", "testFixture/**/*.json"], |
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.
Test fixture needs to be specified in include
, otherwise can't be found.
6db4420
to
9a21671
Compare
The code functions as expected, but I have some concerns about the structure of the compiled code. The main goal of relocating the test folder was to prevent it from being included in the vsix package. However, after moving test to the same directory level as src, the test folder still ends up generated and included in the compiled out directory. Does this outcome go against our original intention? Is there a way to run all the tests without having them included in the |
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.
The vsce has a way to exclude folders. Changes looks great to me. Good job!
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.
great job! thx for moving the tests out of src
What does this PR do?
Moved test folders for each package. Making them sit at the level as respective
src
folders.