-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use assertion phrase in test result table #1061
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
9d541b1
Merge pull request #1049 from w3c/releases
howard-e 4dd4560
Add phrase to graphql schema
Paul-Clue 2880eda
Add phrase field for assertions table
Paul-Clue 41e30ee
Add fields to excludedTypeNameAndField array
Paul-Clue b87e400
Fix failing test
Paul-Clue d1353fd
Remove console log
Paul-Clue 59326d5
Remove duplicate query and fix casing
Paul-Clue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,24 +33,28 @@ export const TEST_RUN_PAGE_QUERY = gql` | |
id | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
mustAssertionResults: assertionResults(priority: MUST) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
shouldAssertionResults: assertionResults(priority: SHOULD) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
mayAssertionResults: assertionResults(priority: MAY) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -88,6 +92,7 @@ export const TEST_RUN_PAGE_QUERY = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -198,6 +203,7 @@ export const TEST_RUN_PAGE_ANON_QUERY = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -323,6 +329,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
id | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -331,6 +338,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -339,6 +347,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -347,6 +356,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -384,6 +394,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -480,6 +491,7 @@ export const FIND_OR_CREATE_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -609,6 +621,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
id | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -617,6 +630,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -625,6 +639,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -633,6 +648,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -670,6 +686,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -766,6 +783,7 @@ export const SAVE_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment about the duplicate phrase. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got this one too! |
||
} | ||
} | ||
conflictingResults { | ||
|
@@ -895,6 +913,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
id | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -903,6 +922,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -911,6 +931,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -919,6 +940,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
) { | ||
assertion { | ||
text | ||
phrase | ||
} | ||
passed | ||
} | ||
|
@@ -956,6 +978,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
@@ -1052,6 +1075,7 @@ export const SUBMIT_TEST_RESULT_MUTATION = gql` | |
assertion { | ||
id | ||
text | ||
phrase | ||
} | ||
} | ||
conflictingResults { | ||
|
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will the query work if you delete the duplicate phrase?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Good catch!