-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f8a1ee
commit 467c019
Showing
7 changed files
with
88 additions
and
15 deletions.
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
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
23 changes: 23 additions & 0 deletions
23
...shots__/__mismatch__/ComponentListCommandTests.Should_OutputComponentList_When_Empty.snap
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,23 @@ | ||
-------------------------------------------------- | ||
### CLI Output | ||
-------------------------------------------------- | ||
Configuration files of type .confixrc located at <</tmp>>/home/.confixrc | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.solution | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.project | ||
Merged .confix.solution from .confixrc | ||
Merged .confix.project from .confix.solution | ||
Merged .confix.component from .confix.solution | ||
✓ Running in scope Project | ||
✓ Configuration loaded | ||
✓ Active Environment is prod | ||
Component provider 'dotnet-package' loaded | ||
✓ Component inputs loaded | ||
Start loading components from project '.' | ||
Found .NET project:'<</tmp>>/content/Confix.csproj' <</tmp>>/content/Confix.csproj | ||
Found assembly: Confix | ||
Scanning assembly: Confix | ||
Start loading components from project '.' | ||
✓ Loaded 0 components | ||
No components found | ||
Skipping IntelliJ IDEA settings file as there is no .idea folder in the solution root. Expected location: <</tmp>>/content/.idea | ||
|
51 changes: 51 additions & 0 deletions
51
...ts__/__mismatch__/ComponentListCommandTests.Should_OutputComponentList_When_Provider.snap
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,51 @@ | ||
-------------------------------------------------- | ||
### CLI Output | ||
-------------------------------------------------- | ||
Configuration files of type .confixrc located at <</tmp>>/home/.confixrc | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.solution | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.project | ||
Merged .confix.solution from .confixrc | ||
Merged .confix.project from .confix.solution | ||
Merged .confix.component from .confix.solution | ||
✓ Running in scope Project | ||
✓ Configuration loaded | ||
✓ Active Environment is prod | ||
Component detected:test <</tmp>>/content/confix/components/test/.confix.component | ||
Configuration files of type .confixrc located at <</tmp>>/home/.confixrc | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.solution | ||
Configuration files of type .confix.solution located at <</tmp>>/content/.confix.project | ||
Configuration files of type .confix.component located at <</tmp>>/content/confix/components/test/.confix.component | ||
Merged .confix.solution from .confixrc | ||
Merged .confix.project from .confix.solution | ||
Merged .confix.component from .confix.solution | ||
✓ Running in scope Component | ||
✓ Configuration loaded | ||
Component input 'graphql' loaded | ||
Component input 'dotnet' loaded | ||
✓ Component inputs loaded | ||
Building component... | ||
Searching in '<</tmp>>/content/confix/components/test/schema.graphql' for GraphQL Schema | ||
-> <</tmp>>/content/confix/components/test/schema.graphql | ||
GraphQL Schema was found: '<</tmp>>/content/confix/components/test/schema.graphql' <</tmp>>/content/confix/components/test/schema.graphql | ||
Replacing existing schema.json file: '<</tmp>>/content/confix/components/test/schema.json' <</tmp>>/content/confix/components/test/schema.json | ||
Generated schema based on GraphQL Schema:'<</tmp>>/content/confix/components/test/schema.json' <</tmp>>/content/confix/components/test/schema.json | ||
Found .NET project:'<</tmp>>/content/Confix.csproj' <</tmp>>/content/Confix.csproj | ||
Ensuring embedded is in the csproj file '<</tmp>>/content/Confix.csproj' | ||
EmbeddedResource '$(MSBuildProjectDirectory)/confix/components/**/*.*' already exists in the csproj file | ||
Building component completed | ||
Component provider 'dotnet-package' loaded | ||
✓ Component inputs loaded | ||
Start loading components from project '.' | ||
Found .NET project:'<</tmp>>/content/Confix.csproj' <</tmp>>/content/Confix.csproj | ||
Found assembly: Confix | ||
Scanning assembly: Confix | ||
Found manifest resource in assembly 'Confix.confix.components.test..confix.component': Confix | ||
Found manifest resource in assembly 'Confix.confix.components.test.schema.graphql': Confix | ||
Found manifest resource in assembly 'Confix.confix.components.test.schema.json': Confix | ||
Found component test in provider __LOCAL | ||
Skipped component test because it was already discovered by dotnet-package | ||
Start loading components from project '.' | ||
✓ Loaded 1 components | ||
- @dotnet-package/test | ||
Skipping IntelliJ IDEA settings file as there is no .idea folder in the solution root. Expected location: <</tmp>>/content/.idea | ||
|
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 |
---|---|---|
|
@@ -631,7 +631,7 @@ type Nested { | |
}, | ||
"wrongType": null, | ||
"required": null, | ||
"array": null | ||
"array": [] | ||
} | ||
"""); | ||
} | ||
|