Skip to content

Commit

Permalink
Update server/resources/ats.json which now has different attributes a…
Browse files Browse the repository at this point in the history
…fter #1208 merge (#1230)
  • Loading branch information
howard-e authored Oct 24, 2024
1 parent 41c968b commit 4fa0d66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions server/resources/ats.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"id": 1,
"name": "JAWS",
"key": "jaws",
"vendorId": 1,
"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>.",
"assertionTokens": {
"screenReader": "JAWS",
Expand Down Expand Up @@ -31,6 +32,7 @@
"id": 2,
"name": "NVDA",
"key": "nvda",
"vendorId": null,
"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>.",
"assertionTokens": {
"screenReader": "NVDA",
Expand Down Expand Up @@ -59,6 +61,7 @@
"id": 3,
"name": "VoiceOver for macOS",
"key": "voiceover_macos",
"vendorId": 4,
"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>.",
"assertionTokens": {
"screenReader": "VoiceOver",
Expand Down
4 changes: 3 additions & 1 deletion server/scripts/import-tests/testPlanVersionOperations.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ const buildTestsAndCreateTestPlanVersions = async (commit, { transaction }) => {

const { support } = await updateJsons();

const ats = await At.findAll();
const ats = await At.findAll({
order: [['id', 'ASC']]
});
await updateAtsJson({ ats, supportAts: support.ats });

for (const directory of fse.readdirSync(builtTestsDirectory)) {
Expand Down

0 comments on commit 4fa0d66

Please sign in to comment.