-
Notifications
You must be signed in to change notification settings - Fork 67
Build: add accessibility testing #114
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!doctype html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>CSS Chassis - Typography</title> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = function( grunt ) { | ||
return { | ||
firefox: { | ||
options: { | ||
threshold: 0 | ||
}, | ||
urls: ['http://localhost:4200/demos/typography.html'], | ||
dest: 'tmp/gu.json' | ||
}, | ||
chrome: { | ||
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. Didn't we want to remove chrome? 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. why would we not want chrome? 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. The travis will crash otherwise. We should have a separate test that uses chrome, that test will not be a part of travis. 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. we should not be running this at all on travis directly it should be on browserstack. |
||
options: { | ||
threshold: 0, | ||
browser: 'chrome' | ||
}, | ||
urls: ['http://localhost:4200/demos/typography.html'] | ||
} | ||
}; | ||
}; |
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.
Why only firefox? We do chrome and firefox for the performance testing id like to do the same here if possible
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.
Chrome does not work on Travis. I could add a chrome target for use locally.
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.
Could you please. We use browserstack for cross browser testing on travis. Can axe-webdriver use browserstack? We don't run the performance stuff on browserstack because browserstack is not consistent enough for performance testing.
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.
Adding chrome will crash travis ?. Maybe we could have two tests, one for travis and another with chrome to run locally.