├── .DS_Store ├── .vscode └── settings.json ├── Angular 15 and below ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── jest-esm.config.js ├── jest-global-mocks.ts ├── jest.config.js ├── package-lock.json ├── package.json ├── setup-jest.ts ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── continent-service │ │ │ ├── continent.service.class.spec.ts │ │ │ ├── continent.service.ng-mocks.spec.ts │ │ │ ├── continent.service.spec.ts │ │ │ ├── continent.service.ts │ │ │ ├── continent.ts │ │ │ └── country.ts │ │ ├── edit-country │ │ │ ├── __snapshots__ │ │ │ │ ├── save-country-with-dummy-component.spec.ts.snap │ │ │ │ └── save-country.spec.ts.snap │ │ │ ├── activated-route-mock.ts │ │ │ ├── edit-country.component.class.spec.ts │ │ │ ├── edit-country.component.component.spec.ts │ │ │ ├── edit-country.component.html │ │ │ ├── edit-country.component.scss │ │ │ ├── edit-country.component.ts │ │ │ ├── edit-country.module.ts │ │ │ ├── save-country-with-dummy-component.spec.ts │ │ │ └── save-country.spec.ts │ │ └── mocking │ │ │ └── simple-functions.spec.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.css ├── tsconfig-esm.spec.json ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── Angular17 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── README.md ├── angular17-JustJeb-workspace ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── projects │ ├── app1 │ │ ├── jest.config.js │ │ ├── setup-jest.ts │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.ts │ │ │ │ └── app.routes.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── app2 │ │ ├── jest.config.js │ │ ├── setup-jest.ts │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.ts │ │ │ │ └── app.routes.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ └── shared-library │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── setup-jest.ts │ │ ├── src │ │ ├── lib │ │ │ ├── shared-library.component.spec.ts │ │ │ ├── shared-library.component.ts │ │ │ ├── shared-library.service.spec.ts │ │ │ └── shared-library.service.ts │ │ └── public-api.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json ├── setup-jest.ts ├── tsconfig.json └── tsconfig.spec.json └── angular17-workspace ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── projects ├── app1 │ ├── jest.config.js │ ├── setup-jest.ts │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ └── app.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.spec.json ├── app2 │ ├── jest.config.js │ ├── setup-jest.ts │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.ts │ │ │ └── app.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.css │ ├── tsconfig.app.json │ └── tsconfig.spec.json └── shared-library │ ├── README.md │ ├── jest.config.js │ ├── ng-package.json │ ├── package.json │ ├── setup-jest.ts │ ├── src │ ├── lib │ │ ├── shared-library.component.spec.ts │ │ ├── shared-library.component.ts │ │ ├── shared-library.service.spec.ts │ │ └── shared-library.service.ts │ └── public-api.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Angular 15 and below/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/.browserslistrc -------------------------------------------------------------------------------- /Angular 15 and below/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/.editorconfig -------------------------------------------------------------------------------- /Angular 15 and below/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/.gitignore -------------------------------------------------------------------------------- /Angular 15 and below/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/LICENSE -------------------------------------------------------------------------------- /Angular 15 and below/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/README.md -------------------------------------------------------------------------------- /Angular 15 and below/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/angular.json -------------------------------------------------------------------------------- /Angular 15 and below/jest-esm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/jest-esm.config.js -------------------------------------------------------------------------------- /Angular 15 and below/jest-global-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/jest-global-mocks.ts -------------------------------------------------------------------------------- /Angular 15 and below/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/jest.config.js -------------------------------------------------------------------------------- /Angular 15 and below/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/package-lock.json -------------------------------------------------------------------------------- /Angular 15 and below/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/package.json -------------------------------------------------------------------------------- /Angular 15 and below/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/setup-jest.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/app.component.html -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/app.component.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/app.module.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/continent.service.class.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/continent.service.class.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/continent.service.ng-mocks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/continent.service.ng-mocks.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/continent.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/continent.service.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/continent.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/continent.service.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/continent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/continent.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/continent-service/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/continent-service/country.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/__snapshots__/save-country-with-dummy-component.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/__snapshots__/save-country-with-dummy-component.spec.ts.snap -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/__snapshots__/save-country.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/__snapshots__/save-country.spec.ts.snap -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/activated-route-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/activated-route-mock.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.component.class.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.component.class.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.component.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.component.component.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.component.html -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.component.scss -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.component.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/edit-country.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/edit-country.module.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/save-country-with-dummy-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/save-country-with-dummy-component.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/edit-country/save-country.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/edit-country/save-country.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/app/mocking/simple-functions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/app/mocking/simple-functions.spec.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular 15 and below/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /Angular 15 and below/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/environments/environment.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/favicon.ico -------------------------------------------------------------------------------- /Angular 15 and below/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/index.html -------------------------------------------------------------------------------- /Angular 15 and below/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/main.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/polyfills.ts -------------------------------------------------------------------------------- /Angular 15 and below/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/src/styles.css -------------------------------------------------------------------------------- /Angular 15 and below/tsconfig-esm.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/tsconfig-esm.spec.json -------------------------------------------------------------------------------- /Angular 15 and below/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/tsconfig.app.json -------------------------------------------------------------------------------- /Angular 15 and below/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/tsconfig.json -------------------------------------------------------------------------------- /Angular 15 and below/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular 15 and below/tsconfig.spec.json -------------------------------------------------------------------------------- /Angular17/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/.editorconfig -------------------------------------------------------------------------------- /Angular17/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/.gitignore -------------------------------------------------------------------------------- /Angular17/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/.vscode/extensions.json -------------------------------------------------------------------------------- /Angular17/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/.vscode/launch.json -------------------------------------------------------------------------------- /Angular17/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/.vscode/tasks.json -------------------------------------------------------------------------------- /Angular17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/README.md -------------------------------------------------------------------------------- /Angular17/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/angular.json -------------------------------------------------------------------------------- /Angular17/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/package-lock.json -------------------------------------------------------------------------------- /Angular17/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/package.json -------------------------------------------------------------------------------- /Angular17/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular17/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/app/app.component.html -------------------------------------------------------------------------------- /Angular17/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Angular17/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/app/app.component.ts -------------------------------------------------------------------------------- /Angular17/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/app/app.config.ts -------------------------------------------------------------------------------- /Angular17/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/app/app.routes.ts -------------------------------------------------------------------------------- /Angular17/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular17/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/favicon.ico -------------------------------------------------------------------------------- /Angular17/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/index.html -------------------------------------------------------------------------------- /Angular17/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/main.ts -------------------------------------------------------------------------------- /Angular17/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/src/styles.css -------------------------------------------------------------------------------- /Angular17/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/tsconfig.app.json -------------------------------------------------------------------------------- /Angular17/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/tsconfig.json -------------------------------------------------------------------------------- /Angular17/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/Angular17/tsconfig.spec.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/README.md -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/.editorconfig -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/.gitignore -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/.vscode/extensions.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/.vscode/launch.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/.vscode/tasks.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/README.md -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/angular.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/package-lock.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/package.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/jest.config.js -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/setup-jest.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

App 1

2 |

{{sharedLibraryService.helloWorld()}}

3 | -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/app/app.component.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/app/app.config.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/app/app.routes.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/favicon.ico -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/index.html -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/main.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/src/styles.css -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/tsconfig.app.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app1/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app1/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/jest.config.js -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/setup-jest.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/app/app.component.html -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/app/app.component.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/app/app.config.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/app/app.routes.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/favicon.ico -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/index.html -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/main.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/src/styles.css -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/tsconfig.app.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/app2/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/app2/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/README.md -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/jest.config.js -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/ng-package.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/package.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/setup-jest.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.component.spec.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.component.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.service.spec.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/src/lib/shared-library.service.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/src/public-api.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/tsconfig.lib.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/projects/shared-library/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/projects/shared-library/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/setup-jest.ts -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/tsconfig.json -------------------------------------------------------------------------------- /angular17-JustJeb-workspace/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-JustJeb-workspace/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-workspace/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/.editorconfig -------------------------------------------------------------------------------- /angular17-workspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/.gitignore -------------------------------------------------------------------------------- /angular17-workspace/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/.vscode/extensions.json -------------------------------------------------------------------------------- /angular17-workspace/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/.vscode/launch.json -------------------------------------------------------------------------------- /angular17-workspace/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/.vscode/tasks.json -------------------------------------------------------------------------------- /angular17-workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/README.md -------------------------------------------------------------------------------- /angular17-workspace/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/angular.json -------------------------------------------------------------------------------- /angular17-workspace/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/package-lock.json -------------------------------------------------------------------------------- /angular17-workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/package.json -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/jest.config.js -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/setup-jest.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

App 1

2 |

{{sharedLibraryService.helloWorld()}}

3 | -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/app/app.component.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/app/app.config.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/app/app.routes.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/favicon.ico -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/index.html -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/main.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/src/styles.css -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/tsconfig.app.json -------------------------------------------------------------------------------- /angular17-workspace/projects/app1/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app1/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/jest.config.js -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/setup-jest.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/app/app.component.html -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/app/app.component.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/app/app.config.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/app/app.routes.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/favicon.ico -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/index.html -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/main.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/src/styles.css -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/tsconfig.app.json -------------------------------------------------------------------------------- /angular17-workspace/projects/app2/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/app2/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/README.md -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/jest.config.js -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/ng-package.json -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/package.json -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/setup-jest.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/src/lib/shared-library.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/src/lib/shared-library.component.spec.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/src/lib/shared-library.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/src/lib/shared-library.component.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/src/lib/shared-library.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/src/lib/shared-library.service.spec.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/src/lib/shared-library.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/src/lib/shared-library.service.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/src/public-api.ts -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/tsconfig.lib.json -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /angular17-workspace/projects/shared-library/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/projects/shared-library/tsconfig.spec.json -------------------------------------------------------------------------------- /angular17-workspace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanrauh/angular-jest/HEAD/angular17-workspace/tsconfig.json --------------------------------------------------------------------------------