Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
a275905
fix(*): update Firebase peer dependencies to support v11 and v12
dackers86 Sep 17, 2025
a51d40c
fix(core): added translations as a core dependency
dackers86 Sep 17, 2025
e5ec6d2
fix(packages): move translations to peer dependencies in core package
dackers86 Sep 17, 2025
7e28ce2
fix(angular): remove redundant translations peer dependency
dackers86 Sep 17, 2025
406f446
chore(angular): Align angular dependencies
Ehesp Sep 17, 2025
21ec181
chore(*): merged latest
dackers86 Sep 17, 2025
d03832c
Merge branch '@invertase/v7-development' into @invertase/fix-peer-dep…
dackers86 Sep 17, 2025
7e8c704
chore(*): updated depenencies for angular and core
dackers86 Sep 17, 2025
09c9867
fix(styles): Strip tailwind pre-flight from dist output
Ehesp Sep 18, 2025
008f3e5
fix(styles): Strip tailwind pre-flight from dist output
dackers86 Sep 18, 2025
99085ec
chore(*): merge latest
dackers86 Sep 18, 2025
36bf7d9
chore(angular): moved translations to be a main dependency
dackers86 Sep 18, 2025
69d5f24
feat(styles): Apply dark mode styles to root theme
Ehesp Sep 18, 2025
7af2bbb
feat(styles): Apply dark mode styles to base theme
dackers86 Sep 18, 2025
1835e4f
fix(angular):removed translation dependency
dackers86 Sep 18, 2025
74c5273
chore(core): formatted dependencies in package json
dackers86 Sep 18, 2025
35c56ee
chore(angular): added licensing
dackers86 Sep 18, 2025
c2f16fc
fix(*): updated peer dependencies
dackers86 Sep 19, 2025
76bc7eb
feat(*): migrate to vitest for angular
dackers86 Sep 19, 2025
8260c29
fix: Angular Vitest test configuration and compatibility issues
dackers86 Sep 19, 2025
70d5386
fix: resolve DividerComponent dependency injection issues
dackers86 Sep 19, 2025
4070d55
fix: resolve component ID collision issues
dackers86 Sep 19, 2025
4e7873c
fix: attempt to resolve duplicate country keys issue
dackers86 Sep 19, 2025
6574119
BREAKTHROUGH: Solve Zone.js ProxyZone issue with async/await pattern
dackers86 Sep 19, 2025
28bcb91
Continue Zone.js ProxyZone fixes with async/await pattern
dackers86 Sep 19, 2025
da79b45
Fix OAuth Button Component tests with async/await pattern
dackers86 Sep 19, 2025
a68ca7f
Fix Terms and Privacy Component tests with async/await pattern
dackers86 Sep 19, 2025
b1ab6c5
Fix remaining Screen Component tests with async/await pattern
dackers86 Sep 19, 2025
cf4f380
Fix all Integration Tests with async/await pattern
dackers86 Sep 19, 2025
ffaac88
feat: migrate Angular example from Jasmine+Karma to Vitest
dackers86 Sep 19, 2025
3878395
fix: update pnpm-lock.yaml to sync Vitest versions
dackers86 Sep 19, 2025
9a13194
fix: properly skip problematic OAuth test instead of throwing error
dackers86 Sep 19, 2025
8314858
refactor: remove all Jasmine syntax from test files
dackers86 Sep 19, 2025
8abee7f
refactor: clean up test-setup.ts files
dackers86 Sep 19, 2025
9a01082
chore: final cleanup of Jasmine/Karma references
dackers86 Sep 19, 2025
311508e
revert: restore original Kosovo country codes
dackers86 Sep 19, 2025
b0448fc
chore(*): upgraded phone-auth-screen-component
dackers86 Sep 22, 2025
26ee384
fix(angular): update template props to functions
dackers86 Sep 22, 2025
baa0fee
Merge pull request #1193 from firebase/@invertase/add-angular-vitest
Ehesp Sep 22, 2025
a5024be
chore(*): merged latest
dackers86 Sep 22, 2025
79ea067
fix(angular): reworked component
dackers86 Sep 22, 2025
9d14645
Merge branch '@invertase/align-update-angular' of https://github.com/…
dackers86 Sep 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ This will compile your project and store the build artifacts in the `dist/` dire

## Running unit tests

To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
To execute unit tests with [Vitest](https://vitest.dev), use the following command:

```bash
ng test
pnpm test
```

## Running end-to-end tests
Expand Down
22 changes: 0 additions & 22 deletions examples/angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,6 @@
"extract-i18n": {
"builder": "@angular/build:extract-i18n"
},
"test": {
"builder": "@angular/build:karma",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": ["src/styles.css"],
"scripts": []
}
}
}
},
"angular": {
Expand All @@ -108,13 +93,6 @@
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular/build:karma",
"options": {
"tsConfig": "projects/angular/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"]
}
}
}
}
},
Expand Down
Loading
Loading