2018-09-30 04:05:50 +00:00
|
|
|
// https://github.com/DevExpress/testcafe
|
|
|
|
// https://devexpress.github.io/testcafe/documentation/test-api/
|
|
|
|
// https://github.com/helen-dikareva/axe-testcafe
|
|
|
|
import axeCheck from 'axe-testcafe';
|
|
|
|
|
|
|
|
fixture`TestCafe Axe accessibility tests (Editor - no parameters)`
|
|
|
|
.page`http://localhost:8000/editor/svg-editor.html`;
|
|
|
|
|
2018-11-07 06:51:50 +00:00
|
|
|
test('Editor - no parameters', async (t) => {
|
2018-09-30 04:05:50 +00:00
|
|
|
await axeCheck(t); // , axeContent, axeOptions: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun
|
|
|
|
});
|
|
|
|
|
|
|
|
fixture`TestCafe Axe accessibility tests (Editor - with all extensions)`
|
|
|
|
.page`http://localhost:8000/editor/svg-editor.html?extensions=ext-arrows.js,ext-closepath.js,ext-foreignobject.js,ext-helloworld.js,ext-mathjax.js,ext-php_savefile.js,ext-server_moinsave.js,ext-server_opensave.js,ext-webappfind.js,ext-xdomain-messaging.js`;
|
|
|
|
|
2018-11-07 06:51:50 +00:00
|
|
|
test('Editor ES - with all extensions', async (t) => {
|
2018-09-30 04:05:50 +00:00
|
|
|
await axeCheck(t); // , axeContent, axeOptions: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun
|
|
|
|
});
|
|
|
|
|
|
|
|
/* eslint-disable qunit/no-commented-tests */
|
|
|
|
// Waiting for https://github.com/DevExpress/testcafe-hammerhead/issues/1725 (also https://github.com/DevExpress/testcafe/issues/2734 )
|
|
|
|
/**
|
|
|
|
fixture`TestCafe Axe accessibility tests (Editor ES - no parameters)`
|
|
|
|
.page`http://localhost:8000/editor/svg-editor-es.html`;
|
|
|
|
|
|
|
|
test('Editor ES - no parameters', async t => {
|
|
|
|
await axeCheck(t); // , axeContent, axeOptions: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun
|
|
|
|
});
|
|
|
|
|
|
|
|
fixture`TestCafe Axe accessibility tests (Editor ES - with all extensions)`
|
|
|
|
.page`http://localhost:8000/editor/svg-editor-es.html?extensions=ext-arrows.js,ext-closepath.js,ext-foreignobject.js,ext-helloworld.js,ext-mathjax.js,ext-php_savefile.js,ext-server_moinsave.js,ext-server_opensave.js,ext-webappfind.js,ext-xdomain-messaging.js`;
|
|
|
|
|
|
|
|
test('Editor ES - with all extensions', async t => {
|
|
|
|
await axeCheck(t); // , axeContent, axeOptions: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun
|
|
|
|
});
|
|
|
|
|
|
|
|
fixture`TestCafe Axe accessibility tests (Embedded - no parameters)`
|
|
|
|
.page`http://localhost:8000/editor/embedapi.html`;
|
|
|
|
|
|
|
|
test('Embedded - no parameters', async t => {
|
|
|
|
await axeCheck(t); // , axeContent, axeOptions: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#api-name-axerun
|
|
|
|
});
|
|
|
|
*/
|
2019-02-21 11:41:09 +00:00
|
|
|
/* eslint-enable qunit/no-commented-tests */
|