Skip to content

Commit 0234b4d

Browse files
committed
further get app working
1 parent f95b11d commit 0234b4d

35 files changed

+18427
-383
lines changed

angular-zoneless/.postcssrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": {
3+
"@tailwindcss/postcss": {}
4+
}
5+
}

angular-zoneless/angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"newProjectRoot": "projects",
99
"projects": {
10-
"angular-21": {
10+
"angular-zoneless": {
1111
"projectType": "application",
1212
"schematics": {},
1313
"root": "",
@@ -57,10 +57,10 @@
5757
"builder": "@angular/build:dev-server",
5858
"configurations": {
5959
"production": {
60-
"buildTarget": "angular-21:build:production"
60+
"buildTarget": "angular-zoneless:build:production"
6161
},
6262
"development": {
63-
"buildTarget": "angular-21:build:development"
63+
"buildTarget": "angular-zoneless:build:development"
6464
}
6565
},
6666
"defaultConfiguration": "development"

angular-zoneless/cypress/ComponentName.cy.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
describe('Authentication', () => {
2+
it('Logs in', () => {
3+
cy.visit('http://localhost:4200')
4+
cy.get('[name="username"]').type('testuser')
5+
cy.get('[name="password"]').type('testpassword')
6+
cy.get('[type="submit"]').click()
7+
cy.get('h1').should('have.text', 'Welcome testuser')
8+
})
9+
})

0 commit comments

Comments
 (0)