File tree Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 47
47
yarn workspace server db-populate-sample-data:test
48
48
# yarn test would run all of these in serial, however we split this up to allow it to continue
49
49
# in case of errors - all tests will still run even if lint fails for instance.
50
- - run : yarn workspace shared prettier
51
- if : always()
52
- - run : yarn workspace client prettier
53
- if : always()
54
- - run : yarn workspace server prettier
55
- if : always()
56
- - run : yarn workspace shared lint
57
- if : always()
58
- - run : yarn workspace client lint
59
- if : always()
60
- - run : yarn workspace server lint
61
- if : always()
62
- - run : yarn workspace shared jest
63
- if : always()
64
- - run : yarn workspace client jest
65
- if : always()
66
50
- run : yarn workspace server jest
67
51
if : always()
68
52
- name : lighthouseci
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ const getTypeAwareQuery = async ({
88
88
89
89
const checkForMissingTypes = ( ) => {
90
90
const missingTypes = [ ] ;
91
+ console . log ( graphqlFieldsByType , graphqlQueriedFieldsByType ) ;
91
92
Object . keys ( graphqlFieldsByType ) . forEach ( typeName => {
92
93
if (
93
94
! graphqlQueriedFieldsByType [ typeName ] &&
@@ -1092,7 +1093,6 @@ const getMutationInputs = async () => {
1092
1093
scenarioResult => ( {
1093
1094
...scenarioResult ,
1094
1095
output : 'sample output' ,
1095
- untestable : false ,
1096
1096
assertionResults : scenarioResult . assertionResults . map (
1097
1097
assertionResult => ( {
1098
1098
...assertionResult ,
You can’t perform that action at this time.
0 commit comments