gitextract_nxebno92/ ├── .clang-format ├── .github/ │ └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin/ │ ├── wct │ └── wct-st ├── bower.json ├── browser/ │ ├── childrunner.ts │ ├── clisocket.ts │ ├── config.ts │ ├── declarations.ts │ ├── environment/ │ │ ├── compatability.ts │ │ ├── errors.ts │ │ └── helpers.ts │ ├── environment.ts │ ├── index.ts │ ├── mocha/ │ │ ├── extend.ts │ │ ├── fixture.ts │ │ ├── replace.ts │ │ └── stub.ts │ ├── mocha.ts │ ├── more-declarations.ts │ ├── reporters/ │ │ ├── console.ts │ │ ├── html.ts │ │ ├── multi.ts │ │ └── title.ts │ ├── reporters.ts │ ├── suites.ts │ ├── tsconfig.json │ └── util.ts ├── browser-js-header.txt ├── browser.js ├── custom_typings/ │ ├── bower-config.d.ts │ ├── findup-sync.d.ts │ ├── promisify-node.d.ts │ ├── send.d.ts │ ├── server-destroy.d.ts │ ├── stacky.d.ts │ └── wd.d.ts ├── data/ │ ├── a11ySuite-npm-header.txt │ ├── a11ySuite.js │ └── index.html ├── gulpfile.js ├── package.json ├── runner/ │ ├── browserrunner.ts │ ├── cli.ts │ ├── clireporter.ts │ ├── config.ts │ ├── context.ts │ ├── gulp.ts │ ├── httpbin.ts │ ├── paths.ts │ ├── plugin.ts │ ├── port-scanner.ts │ ├── steps.ts │ ├── test.ts │ └── webserver.ts ├── runner.js ├── tasks/ │ └── test.js ├── test/ │ ├── fixtures/ │ │ ├── cli/ │ │ │ ├── conf/ │ │ │ │ ├── branch/ │ │ │ │ │ └── leaf/ │ │ │ │ │ └── thing.js │ │ │ │ ├── json/ │ │ │ │ │ ├── wct.conf.js │ │ │ │ │ └── wct.conf.json │ │ │ │ ├── rooted/ │ │ │ │ │ └── wct.conf.js │ │ │ │ ├── test/ │ │ │ │ │ └── foo.js │ │ │ │ └── wct.conf.js │ │ │ └── standard/ │ │ │ ├── test/ │ │ │ │ ├── a.html │ │ │ │ └── b.js │ │ │ └── x-foo.html │ │ ├── early-failure/ │ │ │ ├── bower_components/ │ │ │ │ └── web-component-tester/ │ │ │ │ └── package.json │ │ │ └── test/ │ │ │ └── index.html │ │ ├── fake-packages/ │ │ │ ├── duplicated-dep/ │ │ │ │ └── package.json │ │ │ └── singleton-dep/ │ │ │ └── package.json │ │ ├── integration/ │ │ │ ├── compilation/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ └── index.html │ │ │ ├── components_dir/ │ │ │ │ ├── bower_components/ │ │ │ │ │ └── foo-element/ │ │ │ │ │ └── foo-element.js │ │ │ │ ├── golden.json │ │ │ │ ├── test/ │ │ │ │ │ └── index.html │ │ │ │ └── wct.conf.json │ │ │ ├── custom-components_dir/ │ │ │ │ ├── .bowerrc │ │ │ │ ├── golden.json │ │ │ │ ├── my_components/ │ │ │ │ │ └── bar-element/ │ │ │ │ │ └── bar-element.js │ │ │ │ └── test/ │ │ │ │ └── index.html │ │ │ ├── custom-multiple-component_dirs/ │ │ │ │ ├── .bowerrc │ │ │ │ ├── golden.json │ │ │ │ ├── my_components/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ ├── my_components-bar/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ ├── my_components-foo/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ └── test/ │ │ │ │ └── index.html │ │ │ ├── define-webserver-hook/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ ├── index.html │ │ │ │ └── tests.html │ │ │ ├── failing/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ ├── index.html │ │ │ │ ├── tests.html │ │ │ │ └── tests.js │ │ │ ├── missing/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ └── missing.html │ │ │ ├── mixed-suites/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ ├── index.html │ │ │ │ ├── one.html │ │ │ │ ├── one.js │ │ │ │ ├── two.html │ │ │ │ └── two.js │ │ │ ├── multiple-component_dirs/ │ │ │ │ ├── bower_components/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ ├── bower_components-bar/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ ├── bower_components-foo/ │ │ │ │ │ └── package/ │ │ │ │ │ └── index.js │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ └── index.html │ │ │ ├── multiple-replace/ │ │ │ │ ├── dom-if-element.html │ │ │ │ ├── dom-repeat-fixture.html │ │ │ │ ├── exception-element.html │ │ │ │ ├── exception-fixture.html │ │ │ │ ├── golden.json │ │ │ │ ├── normal-element.html │ │ │ │ ├── projection-element-2.html │ │ │ │ ├── projection-element-3.html │ │ │ │ ├── projection-element-4.html │ │ │ │ ├── projection-element.html │ │ │ │ └── test/ │ │ │ │ ├── index.html │ │ │ │ └── tests.html │ │ │ ├── nested/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ ├── index.html │ │ │ │ ├── leaf.html │ │ │ │ ├── leaf.js │ │ │ │ ├── one/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── tests.html │ │ │ │ └── two/ │ │ │ │ └── index.html │ │ │ ├── no-tests/ │ │ │ │ ├── golden.json │ │ │ │ └── test/ │ │ │ │ └── index.html │ │ │ └── query-string/ │ │ │ ├── golden.json │ │ │ └── test/ │ │ │ ├── index.html │ │ │ ├── tests.html │ │ │ └── tests.js │ │ └── paths/ │ │ ├── bar/ │ │ │ ├── a.js │ │ │ ├── index.html │ │ │ └── index.js │ │ ├── baz/ │ │ │ ├── a/ │ │ │ │ └── fizz.html │ │ │ ├── a.html │ │ │ ├── b/ │ │ │ │ ├── deep/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stuff.html │ │ │ │ │ └── stuff.js │ │ │ │ ├── index.html │ │ │ │ └── one.js │ │ │ └── b.js │ │ ├── foo/ │ │ │ ├── one.js │ │ │ ├── three.css │ │ │ └── two.html │ │ ├── foo.html │ │ └── foo.js │ ├── integration/ │ │ ├── browser.ts │ │ └── setup_test_dir.ts │ └── unit/ │ ├── cli.ts │ ├── config.ts │ ├── context.ts │ ├── grunt.ts │ ├── gulp.ts │ └── paths.ts ├── tsconfig.json ├── tslint.json └── wct-browser-legacy/ ├── a11ySuite.js ├── browser.js └── package.json