mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
* Chore: moves alert to test-id * Chore: moves Dashboard navigation to test-id * Chore: moves Bar gauge value to data-testid * Chore move Folder picker select container to data-testid * Chore: moves Time zone picker select container to data-testid * Chore: moves Choose starting day of the week to data-testid * Chore: change tabIndex on search input * Chore: moves various search related aria-lables to data-testid * Chore: connects label to select input on alerting page * Chore: connects TimeZonePicker and WeekStartPicker with labels * Chore: moves CallToActionButton to data-testid * Chore: move user home preferences select to data-testid * Chore: lower all thresholds
119 lines
2.6 KiB
JavaScript
119 lines
2.6 KiB
JavaScript
var config = {
|
|
defaults: {
|
|
concurrency: 1,
|
|
runners: ['axe'],
|
|
useIncognitoBrowserContext: false,
|
|
chromeLaunchConfig: {
|
|
args: ['--no-sandbox'],
|
|
},
|
|
},
|
|
|
|
urls: [
|
|
{
|
|
url: '${HOST}/login',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 12,
|
|
},
|
|
{
|
|
url: '${HOST}/login',
|
|
wait: 500,
|
|
actions: [
|
|
"wait for element input[name='user'] to be added",
|
|
"set field input[name='user'] to admin",
|
|
"set field input[name='password'] to admin",
|
|
"click element button[aria-label='Login button']",
|
|
"wait for element [aria-label='Skip change password button'] to be visible",
|
|
],
|
|
threshold: 13,
|
|
rootElement: '.main-view',
|
|
},
|
|
{
|
|
url: '${HOST}/?orgId=1',
|
|
wait: 500,
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/d/O6f11TZWk/panel-tests-bar-gauge',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/d/O6f11TZWk/panel-tests-bar-gauge?orgId=1&editview=settings',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/?orgId=1&search=open',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/alerting/list',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/datasources',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/org/users',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/org/teams',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/plugins',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/org',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/org/apikeys',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
{
|
|
url: '${HOST}/dashboards',
|
|
wait: 500,
|
|
rootElement: '.main-view',
|
|
threshold: 0,
|
|
},
|
|
],
|
|
};
|
|
|
|
function myPa11yCiConfiguration(urls, defaults) {
|
|
const HOST_SERVER = process.env.HOST || 'localhost';
|
|
const PORT_SERVER = process.env.PORT || '3001';
|
|
for (var idx = 0; idx < urls.length; idx++) {
|
|
urls[idx] = { ...urls[idx], url: urls[idx].url.replace('${HOST}', `${HOST_SERVER}:${PORT_SERVER}`) };
|
|
}
|
|
|
|
return {
|
|
defaults: defaults,
|
|
urls: urls,
|
|
};
|
|
}
|
|
|
|
module.exports = myPa11yCiConfiguration(config.urls, config.defaults);
|