Skip to content

Commit 761e4aa

Browse files
authored
fix: Make sorting tests easier by supporting decimal presentation numbers - Address #1085 (#1086)
1 parent cab502d commit 761e4aa

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

server/graphql-schema.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,11 @@ const graphqlSchema = gql`
393393
"""
394394
Since each TestPlan originates from a CSV, this number corresponds to
395395
the row within the CSV where this test originated.
396+
397+
Float type because presentationNumber fields from the source *.csv
398+
files use decimal numbers in the v2 format.
396399
"""
397-
rowNumber: Int!
400+
rowNumber: Float!
398401
"""
399402
A human-readable sentence describing the function of the test.
400403
"""

server/resources/ats.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
"defaultConfigurationInstructionsHTML": "Configure JAWS with default settings. For help, read <a href="https://github.com/w3c/aria-at/wiki/Configuring-Screen-Readers-for-Testing">Configuring Screen Readers for Testing</a>.",
77
"assertionTokens": {
88
"screenReader": "JAWS",
9+
"interactionMode": "PC cursor active",
910
"readingMode": "virtual cursor active",
10-
"interactionMode": "PC cursor active"
11+
"readingCursor": "virtual cursor"
1112
},
1213
"settings": {
1314
"virtualCursor": {
@@ -33,8 +34,9 @@
3334
"defaultConfigurationInstructionsHTML": "Configure NVDA with default settings. For help, read <a href="https://github.com/w3c/aria-at/wiki/Configuring-Screen-Readers-for-Testing">Configuring Screen Readers for Testing</a>.",
3435
"assertionTokens": {
3536
"screenReader": "NVDA",
37+
"interactionMode": "focus mode",
3638
"readingMode": "browse mode",
37-
"interactionMode": "focus mode"
39+
"readingCursor": "browse mode caret"
3840
},
3941
"settings": {
4042
"browseMode": {
@@ -58,6 +60,10 @@
5860
"name": "VoiceOver for macOS",
5961
"key": "voiceover_macos",
6062
"defaultConfigurationInstructionsHTML": "Configure VoiceOver with default settings. For help, read <a href="https://github.com/w3c/aria-at/wiki/Configuring-Screen-Readers-for-Testing">Configuring Screen Readers for Testing</a>.",
63+
"assertionTokens": {
64+
"screenReader": "VoiceOver",
65+
"readingCursor": "VoiceOver cursor"
66+
},
6167
"settings": {
6268
"quickNavOn": {
6369
"screenText": "quick nav on",

0 commit comments

Comments
 (0)