Update: See https://github.com/muan/details-on-details instead.
I did a talk at Brooklyn JS called Details on <details>
on 2018/07/19. I have way more details prepared than the ones that fit in the slides, so here's the real details on <details>
. ❤️
– @muan
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {expect} from 'chai'; | |
import App from '../app/components/App'; | |
import a11yHelper from "./a11yHelper"; | |
describe('Accessibility', function () { | |
this.timeout(10000); | |
it('Has no errors', function () { | |
let config = {}; |