├── .clang-format ├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── a11ySuiteExample.png ├── bin ├── wct └── wct-st ├── bower.json ├── browser-js-header.txt ├── browser.js ├── browser.js.map ├── browser ├── childrunner.ts ├── clisocket.ts ├── config.ts ├── declarations.ts ├── environment.ts ├── environment │ ├── compatability.ts │ ├── errors.ts │ └── helpers.ts ├── index.ts ├── mocha.ts ├── mocha │ ├── extend.ts │ ├── fixture.ts │ ├── replace.ts │ └── stub.ts ├── more-declarations.ts ├── reporters.ts ├── reporters │ ├── console.ts │ ├── html.ts │ ├── multi.ts │ └── title.ts ├── suites.ts ├── tsconfig.json └── util.ts ├── 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.js ├── 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 ├── 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 │ │ │ ├── node_modules │ │ │ │ ├── dependency │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── wct-browser-legacy │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ └── dependency │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── pacakge.json │ │ │ │ │ └── pacakge.json │ │ │ └── package.json │ │ └── singleton-dep │ │ │ ├── node_modules │ │ │ ├── dependency │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── wct-browser-legacy │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── 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-bar │ │ │ │ └── package │ │ │ │ │ └── index.js │ │ │ ├── my_components-foo │ │ │ │ └── package │ │ │ │ │ └── index.js │ │ │ ├── my_components │ │ │ │ └── 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-bar │ │ │ │ └── package │ │ │ │ │ └── index.js │ │ │ ├── bower_components-foo │ │ │ │ └── package │ │ │ │ │ └── index.js │ │ │ ├── bower_components │ │ │ │ └── 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.html │ │ ├── a │ │ │ └── fizz.html │ │ ├── b.js │ │ └── b │ │ │ ├── deep │ │ │ ├── index.html │ │ │ ├── stuff.html │ │ │ └── stuff.js │ │ │ ├── index.html │ │ │ └── one.js │ │ ├── foo.html │ │ ├── foo.js │ │ └── foo │ │ ├── one.js │ │ ├── three.css │ │ └── two.html ├── 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 ├── browser.js.map └── package.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/README.md -------------------------------------------------------------------------------- /a11ySuiteExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/a11ySuiteExample.png -------------------------------------------------------------------------------- /bin/wct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/bin/wct -------------------------------------------------------------------------------- /bin/wct-st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/bin/wct-st -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/bower.json -------------------------------------------------------------------------------- /browser-js-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser-js-header.txt -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser.js -------------------------------------------------------------------------------- /browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser.js.map -------------------------------------------------------------------------------- /browser/childrunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/childrunner.ts -------------------------------------------------------------------------------- /browser/clisocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/clisocket.ts -------------------------------------------------------------------------------- /browser/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/config.ts -------------------------------------------------------------------------------- /browser/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/declarations.ts -------------------------------------------------------------------------------- /browser/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/environment.ts -------------------------------------------------------------------------------- /browser/environment/compatability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/environment/compatability.ts -------------------------------------------------------------------------------- /browser/environment/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/environment/errors.ts -------------------------------------------------------------------------------- /browser/environment/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/environment/helpers.ts -------------------------------------------------------------------------------- /browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/index.ts -------------------------------------------------------------------------------- /browser/mocha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/mocha.ts -------------------------------------------------------------------------------- /browser/mocha/extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/mocha/extend.ts -------------------------------------------------------------------------------- /browser/mocha/fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/mocha/fixture.ts -------------------------------------------------------------------------------- /browser/mocha/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/mocha/replace.ts -------------------------------------------------------------------------------- /browser/mocha/stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/mocha/stub.ts -------------------------------------------------------------------------------- /browser/more-declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/more-declarations.ts -------------------------------------------------------------------------------- /browser/reporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/reporters.ts -------------------------------------------------------------------------------- /browser/reporters/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/reporters/console.ts -------------------------------------------------------------------------------- /browser/reporters/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/reporters/html.ts -------------------------------------------------------------------------------- /browser/reporters/multi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/reporters/multi.ts -------------------------------------------------------------------------------- /browser/reporters/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/reporters/title.ts -------------------------------------------------------------------------------- /browser/suites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/suites.ts -------------------------------------------------------------------------------- /browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/tsconfig.json -------------------------------------------------------------------------------- /browser/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/browser/util.ts -------------------------------------------------------------------------------- /custom_typings/bower-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/bower-config.d.ts -------------------------------------------------------------------------------- /custom_typings/findup-sync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/findup-sync.d.ts -------------------------------------------------------------------------------- /custom_typings/promisify-node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/promisify-node.d.ts -------------------------------------------------------------------------------- /custom_typings/send.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/send.d.ts -------------------------------------------------------------------------------- /custom_typings/server-destroy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/server-destroy.d.ts -------------------------------------------------------------------------------- /custom_typings/stacky.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/stacky.d.ts -------------------------------------------------------------------------------- /custom_typings/wd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/custom_typings/wd.d.ts -------------------------------------------------------------------------------- /data/a11ySuite-npm-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/data/a11ySuite-npm-header.txt -------------------------------------------------------------------------------- /data/a11ySuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/data/a11ySuite.js -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/data/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/package.json -------------------------------------------------------------------------------- /runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner.js -------------------------------------------------------------------------------- /runner/browserrunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/browserrunner.ts -------------------------------------------------------------------------------- /runner/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/cli.ts -------------------------------------------------------------------------------- /runner/clireporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/clireporter.ts -------------------------------------------------------------------------------- /runner/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/config.ts -------------------------------------------------------------------------------- /runner/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/context.ts -------------------------------------------------------------------------------- /runner/gulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/gulp.ts -------------------------------------------------------------------------------- /runner/httpbin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/httpbin.ts -------------------------------------------------------------------------------- /runner/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/paths.ts -------------------------------------------------------------------------------- /runner/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/plugin.ts -------------------------------------------------------------------------------- /runner/port-scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/port-scanner.ts -------------------------------------------------------------------------------- /runner/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/steps.ts -------------------------------------------------------------------------------- /runner/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/test.ts -------------------------------------------------------------------------------- /runner/webserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/runner/webserver.ts -------------------------------------------------------------------------------- /tasks/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/tasks/test.js -------------------------------------------------------------------------------- /test/fixtures/cli/conf/branch/leaf/thing.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cli/conf/json/wct.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/cli/conf/json/wct.conf.js -------------------------------------------------------------------------------- /test/fixtures/cli/conf/json/wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/cli/conf/json/wct.conf.json -------------------------------------------------------------------------------- /test/fixtures/cli/conf/rooted/wct.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/cli/conf/rooted/wct.conf.js -------------------------------------------------------------------------------- /test/fixtures/cli/conf/test/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cli/conf/wct.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/cli/conf/wct.conf.js -------------------------------------------------------------------------------- /test/fixtures/cli/standard/test/a.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cli/standard/test/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/cli/standard/x-foo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/early-failure/bower_components/web-component-tester/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/early-failure/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/early-failure/test/index.html -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/dependency/index.js: -------------------------------------------------------------------------------- 1 | export const a = true; -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/duplicated-dep/node_modules/dependency/package.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/index.js: -------------------------------------------------------------------------------- 1 | export const a = true; -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/node_modules/dependency/index.js: -------------------------------------------------------------------------------- 1 | export const a = true; -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/node_modules/dependency/pacakge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/node_modules/dependency/pacakge.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/pacakge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/duplicated-dep/node_modules/wct-browser-legacy/pacakge.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/duplicated-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/duplicated-dep/package.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/singleton-dep/node_modules/dependency/index.js: -------------------------------------------------------------------------------- 1 | export const a = true; -------------------------------------------------------------------------------- /test/fixtures/fake-packages/singleton-dep/node_modules/dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/singleton-dep/node_modules/dependency/package.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/singleton-dep/node_modules/wct-browser-legacy/index.js: -------------------------------------------------------------------------------- 1 | export const a = true; -------------------------------------------------------------------------------- /test/fixtures/fake-packages/singleton-dep/node_modules/wct-browser-legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/singleton-dep/node_modules/wct-browser-legacy/package.json -------------------------------------------------------------------------------- /test/fixtures/fake-packages/singleton-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/fake-packages/singleton-dep/package.json -------------------------------------------------------------------------------- /test/fixtures/integration/compilation/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/compilation/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/compilation/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/compilation/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/components_dir/bower_components/foo-element/foo-element.js: -------------------------------------------------------------------------------- 1 | window.fooElementLoaded = 'yes'; -------------------------------------------------------------------------------- /test/fixtures/integration/components_dir/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/components_dir/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/components_dir/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/components_dir/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/components_dir/wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/components_dir/wct.conf.json -------------------------------------------------------------------------------- /test/fixtures/integration/custom-components_dir/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "my_components/" 3 | } -------------------------------------------------------------------------------- /test/fixtures/integration/custom-components_dir/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/custom-components_dir/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/custom-components_dir/my_components/bar-element/bar-element.js: -------------------------------------------------------------------------------- 1 | window.barElementLoaded = 'yes'; -------------------------------------------------------------------------------- /test/fixtures/integration/custom-components_dir/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/custom-components_dir/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "my_components" 3 | } -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/custom-multiple-component_dirs/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/my_components-bar/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'bar'; -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/my_components-foo/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'foo'; -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/my_components/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'mainline'; -------------------------------------------------------------------------------- /test/fixtures/integration/custom-multiple-component_dirs/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/custom-multiple-component_dirs/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/define-webserver-hook/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/define-webserver-hook/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/define-webserver-hook/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/define-webserver-hook/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/define-webserver-hook/test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/define-webserver-hook/test/tests.html -------------------------------------------------------------------------------- /test/fixtures/integration/failing/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/failing/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/failing/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/failing/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/failing/test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/failing/test/tests.html -------------------------------------------------------------------------------- /test/fixtures/integration/failing/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/failing/test/tests.js -------------------------------------------------------------------------------- /test/fixtures/integration/missing/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/missing/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/missing/test/missing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/missing/test/missing.html -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/test/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/test/one.html -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/test/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/test/one.js -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/test/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/test/two.html -------------------------------------------------------------------------------- /test/fixtures/integration/mixed-suites/test/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/mixed-suites/test/two.js -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-component_dirs/bower_components-bar/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'bar'; -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-component_dirs/bower_components-foo/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'foo'; -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-component_dirs/bower_components/package/index.js: -------------------------------------------------------------------------------- 1 | window.nameOfThing = 'mainline'; -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-component_dirs/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-component_dirs/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-component_dirs/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-component_dirs/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/dom-if-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/dom-if-element.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/dom-repeat-fixture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/dom-repeat-fixture.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/exception-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/exception-element.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/exception-fixture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/exception-fixture.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/normal-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/normal-element.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/projection-element-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/projection-element-2.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/projection-element-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/projection-element-3.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/projection-element-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/projection-element-4.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/projection-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/projection-element.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/multiple-replace/test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/multiple-replace/test/tests.html -------------------------------------------------------------------------------- /test/fixtures/integration/nested/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/leaf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/test/leaf.html -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/leaf.js: -------------------------------------------------------------------------------- 1 | test('js test', function() {}); 2 | -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/one/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/test/one/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/one/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/test/one/tests.html -------------------------------------------------------------------------------- /test/fixtures/integration/nested/test/two/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/nested/test/two/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/no-tests/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/no-tests/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/no-tests/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/no-tests/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/query-string/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/query-string/golden.json -------------------------------------------------------------------------------- /test/fixtures/integration/query-string/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/query-string/test/index.html -------------------------------------------------------------------------------- /test/fixtures/integration/query-string/test/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/query-string/test/tests.html -------------------------------------------------------------------------------- /test/fixtures/integration/query-string/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/fixtures/integration/query-string/test/tests.js -------------------------------------------------------------------------------- /test/fixtures/paths/bar/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/bar/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/bar/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/a.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/a/fizz.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b/deep/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b/deep/stuff.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b/deep/stuff.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/baz/b/one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/foo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/foo/one.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/foo/three.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/paths/foo/two.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/integration/browser.ts -------------------------------------------------------------------------------- /test/integration/setup_test_dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/integration/setup_test_dir.ts -------------------------------------------------------------------------------- /test/unit/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/cli.ts -------------------------------------------------------------------------------- /test/unit/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/config.ts -------------------------------------------------------------------------------- /test/unit/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/context.ts -------------------------------------------------------------------------------- /test/unit/grunt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/grunt.ts -------------------------------------------------------------------------------- /test/unit/gulp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/gulp.ts -------------------------------------------------------------------------------- /test/unit/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/test/unit/paths.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/tslint.json -------------------------------------------------------------------------------- /wct-browser-legacy/a11ySuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/wct-browser-legacy/a11ySuite.js -------------------------------------------------------------------------------- /wct-browser-legacy/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/wct-browser-legacy/browser.js -------------------------------------------------------------------------------- /wct-browser-legacy/browser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/wct-browser-legacy/browser.js.map -------------------------------------------------------------------------------- /wct-browser-legacy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Polymer/web-component-tester/HEAD/wct-browser-legacy/package.json --------------------------------------------------------------------------------