Skip to content

Commit cdea8a8

Browse files
committed
Debug
1 parent 164a9c4 commit cdea8a8

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

.github/workflows/runtest.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,6 @@ jobs:
4747
yarn workspace server db-populate-sample-data:test
4848
# yarn test would run all of these in serial, however we split this up to allow it to continue
4949
# 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()
6650
- run: yarn workspace server jest
6751
if: always()
6852
- name: lighthouseci

server/tests/integration/graphql.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ const getTypeAwareQuery = async ({
8888

8989
const checkForMissingTypes = () => {
9090
const missingTypes = [];
91+
console.log(graphqlFieldsByType, graphqlQueriedFieldsByType);
9192
Object.keys(graphqlFieldsByType).forEach(typeName => {
9293
if (
9394
!graphqlQueriedFieldsByType[typeName] &&
@@ -1092,7 +1093,6 @@ const getMutationInputs = async () => {
10921093
scenarioResult => ({
10931094
...scenarioResult,
10941095
output: 'sample output',
1095-
untestable: false,
10961096
assertionResults: scenarioResult.assertionResults.map(
10971097
assertionResult => ({
10981098
...assertionResult,

0 commit comments

Comments
 (0)