├── .all-contributorsrc ├── .browserslistrc ├── .devcontainer ├── devcontainer.json └── welcome-message.txt ├── .editorconfig ├── .githooks └── pre-commit ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .node-version ├── .npmrc ├── .nxignore ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── example-app-karma │ ├── eslint.config.cjs │ ├── eslint.config.mjs │ ├── jasmine-dom.d.ts │ ├── karma.conf.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── examples │ │ │ │ └── login-form.spec.ts │ │ │ └── issues │ │ │ │ ├── issue-491.spec.ts │ │ │ │ ├── jasmine-matchers.spec.ts │ │ │ │ └── rerender.spec.ts │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── example-app │ ├── eslint.config.cjs │ ├── eslint.config.mjs │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ └── examples │ │ │ ├── 00-single-component.spec.ts │ │ │ ├── 00-single-component.ts │ │ │ ├── 01-nested-component.spec.ts │ │ │ ├── 01-nested-component.ts │ │ │ ├── 02-input-output.spec.ts │ │ │ ├── 02-input-output.ts │ │ │ ├── 03-forms.spec.ts │ │ │ ├── 03-forms.ts │ │ │ ├── 04-forms-with-material.spec.ts │ │ │ ├── 04-forms-with-material.ts │ │ │ ├── 05-component-provider.spec.ts │ │ │ ├── 05-component-provider.ts │ │ │ ├── 06-with-ngrx-store.spec.ts │ │ │ ├── 06-with-ngrx-store.ts │ │ │ ├── 07-with-ngrx-mock-store.spec.ts │ │ │ ├── 07-with-ngrx-mock-store.ts │ │ │ ├── 08-directive.spec.ts │ │ │ ├── 08-directive.ts │ │ │ ├── 09-router.spec.ts │ │ │ ├── 09-router.ts │ │ │ ├── 10-inject-token-dependency.spec.ts │ │ │ ├── 10-inject-token-dependency.ts │ │ │ ├── 11-ng-content.spec.ts │ │ │ ├── 11-ng-content.ts │ │ │ ├── 12-service-component.spec.ts │ │ │ ├── 12-service-component.ts │ │ │ ├── 13-scrolling.component.spec.ts │ │ │ ├── 13-scrolling.component.ts │ │ │ ├── 14-async-component.spec.ts │ │ │ ├── 14-async-component.ts │ │ │ ├── 15-dialog.component.spec.ts │ │ │ ├── 15-dialog.component.ts │ │ │ ├── 16-input-getter-setter.spec.ts │ │ │ ├── 16-input-getter-setter.ts │ │ │ ├── 17-component-with-attribute-selector.spec.ts │ │ │ ├── 17-component-with-attribute-selector.ts │ │ │ ├── 18-html-as-input.spec.ts │ │ │ ├── 19-standalone-component.spec.ts │ │ │ ├── 19-standalone-component.ts │ │ │ ├── 20-test-harness.spec.ts │ │ │ ├── 20-test-harness.ts │ │ │ ├── 21-deferable-view.component.ts │ │ │ ├── 21-deferable-view.spec.ts │ │ │ ├── 22-signal-inputs.component.spec.ts │ │ │ ├── 22-signal-inputs.component.ts │ │ │ ├── 23-host-directive.spec.ts │ │ │ ├── 23-host-directive.ts │ │ │ ├── 24-bindings-api.component.spec.ts │ │ │ ├── 24-bindings-api.component.ts │ │ │ └── README.md │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── eslint.config.cjs ├── eslint.config.mjs ├── jest.config.ts ├── jest.preset.js ├── lint-staged.config.js ├── nx.json ├── other ├── logo-icon.svg ├── logo-transparent.svg ├── logo.jpg ├── logo.png └── logo.svg ├── package.json ├── prettier.config.js ├── projects ├── testing-library │ ├── eslint.config.cjs │ ├── eslint.config.mjs │ ├── index.ts │ ├── jest-utils │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── create-mock.ts │ │ │ │ └── index.ts │ │ │ └── public_api.ts │ │ └── tests │ │ │ └── create-mock.spec.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── schematics │ │ ├── collection.json │ │ ├── migrations │ │ │ ├── dtl-as-dev-dependency │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ └── migrations.json │ │ └── ng-add │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ ├── src │ │ ├── lib │ │ │ ├── config.ts │ │ │ ├── models.ts │ │ │ └── testing-library.ts │ │ └── public_api.ts │ ├── test-setup.ts │ ├── tests │ │ ├── auto-cleanup.spec.ts │ │ ├── bindings.spec.ts │ │ ├── config.spec.ts │ │ ├── debug.spec.ts │ │ ├── defer-blocks.spec.ts │ │ ├── detect-changes.spec.ts │ │ ├── find-by.spec.ts │ │ ├── fire-event.spec.ts │ │ ├── integration.spec.ts │ │ ├── integrations │ │ │ └── ng-mocks.spec.ts │ │ ├── issues │ │ │ ├── issue-188.spec.ts │ │ │ ├── issue-230.spec.ts │ │ │ ├── issue-280.spec.ts │ │ │ ├── issue-318.spec.ts │ │ │ ├── issue-346.spec.ts │ │ │ ├── issue-386.spec.ts │ │ │ ├── issue-389.spec.ts │ │ │ ├── issue-396-standalone-stub-child.spec.ts │ │ │ ├── issue-397-directive-overrides-component-input.spec.ts │ │ │ ├── issue-398-component-without-host-id.spec.ts │ │ │ ├── issue-422-view-already-destroyed.spec.ts │ │ │ ├── issue-435.spec.ts │ │ │ ├── issue-437.spec.ts │ │ │ ├── issue-492.spec.ts │ │ │ ├── issue-493.spec.ts │ │ │ └── issue-67.spec.ts │ │ ├── navigate.spec.ts │ │ ├── providers │ │ │ ├── component-provider.spec.ts │ │ │ └── module-provider.spec.ts │ │ ├── render-template.spec.ts │ │ ├── render.spec.ts │ │ ├── rerender.spec.ts │ │ ├── wait-for-element-to-be-removed.spec.ts │ │ └── wait-for.spec.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.schematics.json │ └── tsconfig.spec.json └── vscode-atl-render │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── language-configuration.json │ ├── other │ └── hedgehog.png │ ├── package.json │ └── syntaxes │ └── atl-render.json ├── release.config.js └── tsconfig.base.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/welcome-message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.devcontainer/welcome-message.txt -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npm run pre-commit 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.npmrc -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- 1 | /projects/vscode-atl-render 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/README.md -------------------------------------------------------------------------------- /apps/example-app-karma/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/eslint.config.cjs -------------------------------------------------------------------------------- /apps/example-app-karma/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/eslint.config.mjs -------------------------------------------------------------------------------- /apps/example-app-karma/jasmine-dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/jasmine-dom.d.ts -------------------------------------------------------------------------------- /apps/example-app-karma/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/karma.conf.js -------------------------------------------------------------------------------- /apps/example-app-karma/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/project.json -------------------------------------------------------------------------------- /apps/example-app-karma/src/app/examples/login-form.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/src/app/examples/login-form.spec.ts -------------------------------------------------------------------------------- /apps/example-app-karma/src/app/issues/issue-491.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/src/app/issues/issue-491.spec.ts -------------------------------------------------------------------------------- /apps/example-app-karma/src/app/issues/jasmine-matchers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/src/app/issues/jasmine-matchers.spec.ts -------------------------------------------------------------------------------- /apps/example-app-karma/src/app/issues/rerender.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/src/app/issues/rerender.spec.ts -------------------------------------------------------------------------------- /apps/example-app-karma/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/src/test.ts -------------------------------------------------------------------------------- /apps/example-app-karma/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/tsconfig.app.json -------------------------------------------------------------------------------- /apps/example-app-karma/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/example-app-karma/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/tsconfig.json -------------------------------------------------------------------------------- /apps/example-app-karma/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app-karma/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/example-app/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/eslint.config.cjs -------------------------------------------------------------------------------- /apps/example-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/eslint.config.mjs -------------------------------------------------------------------------------- /apps/example-app/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/jest.config.ts -------------------------------------------------------------------------------- /apps/example-app/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/project.json -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/00-single-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/00-single-component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/00-single-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/00-single-component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/01-nested-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/01-nested-component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/01-nested-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/01-nested-component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/02-input-output.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/02-input-output.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/02-input-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/02-input-output.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/03-forms.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/03-forms.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/03-forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/03-forms.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/04-forms-with-material.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/04-forms-with-material.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/04-forms-with-material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/04-forms-with-material.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/05-component-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/05-component-provider.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/05-component-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/05-component-provider.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/06-with-ngrx-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/06-with-ngrx-store.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/06-with-ngrx-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/06-with-ngrx-store.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/07-with-ngrx-mock-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/07-with-ngrx-mock-store.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/07-with-ngrx-mock-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/07-with-ngrx-mock-store.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/08-directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/08-directive.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/08-directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/08-directive.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/09-router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/09-router.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/09-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/09-router.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/10-inject-token-dependency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/10-inject-token-dependency.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/10-inject-token-dependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/10-inject-token-dependency.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/11-ng-content.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/11-ng-content.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/11-ng-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/11-ng-content.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/12-service-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/12-service-component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/12-service-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/12-service-component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/13-scrolling.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/13-scrolling.component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/13-scrolling.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/13-scrolling.component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/14-async-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/14-async-component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/14-async-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/14-async-component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/15-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/15-dialog.component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/15-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/15-dialog.component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/16-input-getter-setter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/16-input-getter-setter.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/16-input-getter-setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/16-input-getter-setter.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/17-component-with-attribute-selector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/17-component-with-attribute-selector.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/17-component-with-attribute-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/17-component-with-attribute-selector.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/18-html-as-input.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/18-html-as-input.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/19-standalone-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/19-standalone-component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/19-standalone-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/19-standalone-component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/20-test-harness.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/20-test-harness.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/20-test-harness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/20-test-harness.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/21-deferable-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/21-deferable-view.component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/21-deferable-view.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/21-deferable-view.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/22-signal-inputs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/22-signal-inputs.component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/22-signal-inputs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/22-signal-inputs.component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/23-host-directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/23-host-directive.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/23-host-directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/23-host-directive.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/24-bindings-api.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/24-bindings-api.component.spec.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/24-bindings-api.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/24-bindings-api.component.ts -------------------------------------------------------------------------------- /apps/example-app/src/app/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/app/examples/README.md -------------------------------------------------------------------------------- /apps/example-app/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/src/test-setup.ts -------------------------------------------------------------------------------- /apps/example-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/example-app/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/example-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/tsconfig.json -------------------------------------------------------------------------------- /apps/example-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/apps/example-app/tsconfig.spec.json -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/jest.preset.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/nx.json -------------------------------------------------------------------------------- /other/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/other/logo-icon.svg -------------------------------------------------------------------------------- /other/logo-transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/other/logo-transparent.svg -------------------------------------------------------------------------------- /other/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/other/logo.jpg -------------------------------------------------------------------------------- /other/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/other/logo.png -------------------------------------------------------------------------------- /other/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/other/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/prettier.config.js -------------------------------------------------------------------------------- /projects/testing-library/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/eslint.config.cjs -------------------------------------------------------------------------------- /projects/testing-library/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/eslint.config.mjs -------------------------------------------------------------------------------- /projects/testing-library/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src/public_api'; 2 | -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src/public_api'; 2 | -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/ng-package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/src/lib/create-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/jest-utils/src/lib/create-mock.ts -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/src/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from './create-mock'; 2 | -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/jest-utils/src/public_api.ts -------------------------------------------------------------------------------- /projects/testing-library/jest-utils/tests/create-mock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/jest-utils/tests/create-mock.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/jest.config.ts -------------------------------------------------------------------------------- /projects/testing-library/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/ng-package.json -------------------------------------------------------------------------------- /projects/testing-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/package.json -------------------------------------------------------------------------------- /projects/testing-library/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/project.json -------------------------------------------------------------------------------- /projects/testing-library/schematics/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/collection.json -------------------------------------------------------------------------------- /projects/testing-library/schematics/migrations/dtl-as-dev-dependency/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/migrations/dtl-as-dev-dependency/index.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/schematics/migrations/dtl-as-dev-dependency/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/migrations/dtl-as-dev-dependency/index.ts -------------------------------------------------------------------------------- /projects/testing-library/schematics/migrations/migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/migrations/migrations.json -------------------------------------------------------------------------------- /projects/testing-library/schematics/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/ng-add/index.ts -------------------------------------------------------------------------------- /projects/testing-library/schematics/ng-add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/ng-add/schema.json -------------------------------------------------------------------------------- /projects/testing-library/schematics/ng-add/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/schematics/ng-add/schema.ts -------------------------------------------------------------------------------- /projects/testing-library/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/src/lib/config.ts -------------------------------------------------------------------------------- /projects/testing-library/src/lib/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/src/lib/models.ts -------------------------------------------------------------------------------- /projects/testing-library/src/lib/testing-library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/src/lib/testing-library.ts -------------------------------------------------------------------------------- /projects/testing-library/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/src/public_api.ts -------------------------------------------------------------------------------- /projects/testing-library/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/test-setup.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/auto-cleanup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/auto-cleanup.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/bindings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/bindings.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/config.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/debug.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/debug.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/defer-blocks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/defer-blocks.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/detect-changes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/detect-changes.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/find-by.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/find-by.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/fire-event.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/fire-event.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/integration.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/integrations/ng-mocks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/integrations/ng-mocks.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-188.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-188.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-230.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-230.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-280.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-280.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-318.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-318.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-346.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-346.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-386.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-386.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-389.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-389.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-396-standalone-stub-child.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-396-standalone-stub-child.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-397-directive-overrides-component-input.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-397-directive-overrides-component-input.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-398-component-without-host-id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-398-component-without-host-id.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-422-view-already-destroyed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-422-view-already-destroyed.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-435.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-435.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-437.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-437.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-492.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-492.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-493.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-493.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/issues/issue-67.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/issues/issue-67.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/navigate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/navigate.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/providers/component-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/providers/component-provider.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/providers/module-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/providers/module-provider.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/render-template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/render-template.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/render.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/render.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/rerender.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/rerender.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/wait-for-element-to-be-removed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/wait-for-element-to-be-removed.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tests/wait-for.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tests/wait-for.spec.ts -------------------------------------------------------------------------------- /projects/testing-library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tsconfig.json -------------------------------------------------------------------------------- /projects/testing-library/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/testing-library/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/testing-library/tsconfig.schematics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tsconfig.schematics.json -------------------------------------------------------------------------------- /projects/testing-library/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/testing-library/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/vscode-atl-render/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/.gitattributes -------------------------------------------------------------------------------- /projects/vscode-atl-render/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /projects/vscode-atl-render/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/.vscode/launch.json -------------------------------------------------------------------------------- /projects/vscode-atl-render/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/.vscodeignore -------------------------------------------------------------------------------- /projects/vscode-atl-render/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/CHANGELOG.md -------------------------------------------------------------------------------- /projects/vscode-atl-render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/README.md -------------------------------------------------------------------------------- /projects/vscode-atl-render/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/language-configuration.json -------------------------------------------------------------------------------- /projects/vscode-atl-render/other/hedgehog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/other/hedgehog.png -------------------------------------------------------------------------------- /projects/vscode-atl-render/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/package.json -------------------------------------------------------------------------------- /projects/vscode-atl-render/syntaxes/atl-render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/projects/vscode-atl-render/syntaxes/atl-render.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/release.config.js -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-library/angular-testing-library/HEAD/tsconfig.base.json --------------------------------------------------------------------------------