You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in our architecture review, this task is to move 'test' related code into a 'test' folder (or whatever you decided to name it).
The main reason for this is to ensure we never reference test related code inside of production code. One way to achieve this is to have a completely separate 'test' folder at the root (instead of under src).
This would include stuff like:
standardTest.ts
index.ts
all *.vscode.test.ts files
test helper code
It would NOT include:
all unit tests. These would reside next to the code they're testing
The text was updated successfully, but these errors were encountered:
rchiodo
added
the
bug
Issue identified by VS Code Team member as probable bug
label
Feb 10, 2022
As discussed in our architecture review, this task is to move 'test' related code into a 'test' folder (or whatever you decided to name it).
The main reason for this is to ensure we never reference test related code inside of production code. One way to achieve this is to have a completely separate 'test' folder at the root (instead of under src).
This would include stuff like:
It would NOT include:
The text was updated successfully, but these errors were encountered: