Make BundlerConsistencyTests
stop building/copying self-contained project unnecessarily
#91829
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.
BundlerConsistencyTests
were building a self-contained project and copying it for each test case. They are targeting theBundler
API and don't actual need a full app - just validation of how things get bundled and added to the manifest.HelloWorld
project for as a pre-built test asset for host testsBundlerConsistencyTests
use a pre-built app and shared framework files instead of building/copying a self-contained projectTestWithAdditionalContentAfterBundleMetadata
that actually runs the bundled app intoBundleAndRun
Contributes to #91039 - the other two test classes related to that issue are:
BundledAppWithSubDirs
: should already be addressed with Switch theAppWithSubDirs
project used for single-file tests to project that is built outside of test runs #91477BundleExtractToSpecificPath
: should switch to usingSingleFileTestApp
helper and theHelloWorld
project being added in this PR