Skip to content

Commit 8cc3ea4

Browse files
committed
Removed CI blocking, ran Prettier
1 parent 149c848 commit 8cc3ea4

7 files changed

Lines changed: 35 additions & 40 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ jobs:
101101
cypress-dashboard:
102102
name: Cypress - Dashboard
103103
runs-on: ubuntu-latest
104-
needs: docker-build
105104

106105
steps:
107106
- uses: actions/checkout@v4
@@ -124,7 +123,6 @@ jobs:
124123
cypress-events:
125124
name: Cypress - Events
126125
runs-on: ubuntu-latest
127-
needs: docker-build
128126

129127
steps:
130128
- uses: actions/checkout@v4
@@ -147,7 +145,6 @@ jobs:
147145
cypress-insights:
148146
name: Cypress - Insights
149147
runs-on: ubuntu-latest
150-
needs: docker-build
151148

152149
steps:
153150
- uses: actions/checkout@v4
@@ -170,7 +167,6 @@ jobs:
170167
cypress-organizations:
171168
name: Cypress - Organizations
172169
runs-on: ubuntu-latest
173-
needs: docker-build
174170

175171
steps:
176172
- uses: actions/checkout@v4
@@ -193,7 +189,6 @@ jobs:
193189
cypress-user:
194190
name: Cypress - User
195191
runs-on: ubuntu-latest
196-
needs: docker-build
197192

198193
steps:
199194
- uses: actions/checkout@v4
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
describe("Dashboard Page", () => {
2-
it("displays the correct main title", () => {
3-
cy.visit("localhost:5173")
1+
describe('Dashboard Page', () => {
2+
it('displays the correct main title', () => {
3+
cy.visit('localhost:5173');
44

5-
cy.get("h1").should("contain", "My Dashboard")
6-
})
7-
})
5+
cy.get('h1').should('contain', 'My Dashboard');
6+
});
7+
});

cypress/e2e/events/events.cy.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
describe("Event Page", () => {
2-
it("displays the correct main title", () => {
3-
cy.visit("localhost:5173/events")
1+
describe('Event Page', () => {
2+
it('displays the correct main title', () => {
3+
cy.visit('localhost:5173/events');
44

5-
cy.get("h1").should("contain", "My Events")
6-
})
7-
})
5+
cy.get('h1').should('contain', 'My Events');
6+
});
7+
});
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
describe("Insights Page", () => {
2-
it("displays the correct main title", () => {
3-
cy.visit("localhost:5173/insights")
1+
describe('Insights Page', () => {
2+
it('displays the correct main title', () => {
3+
cy.visit('localhost:5173/insights');
44

5-
cy.get("h1").should("contain", "Insights")
6-
})
7-
})
5+
cy.get('h1').should('contain', 'Insights');
6+
});
7+
});
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
describe("Organizations Page", () => {
2-
it("displays the correct main title", () => {
3-
cy.visit("localhost:5173/organizations")
1+
describe('Organizations Page', () => {
2+
it('displays the correct main title', () => {
3+
cy.visit('localhost:5173/organizations');
44

5-
cy.get("h1").should("contain", "My Organizations")
6-
})
7-
})
5+
cy.get('h1').should('contain', 'My Organizations');
6+
});
7+
});

cypress/e2e/profile/profile.cy.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
describe("Profile Page", () => {
2-
it("displays the correct main title", () => {
3-
cy.visit("localhost:5173/profile")
1+
describe('Profile Page', () => {
2+
it('displays the correct main title', () => {
3+
cy.visit('localhost:5173/profile');
44

5-
cy.get("h1").should("contain", "My Profile")
6-
})
7-
})
5+
cy.get('h1').should('contain', 'My Profile');
6+
});
7+
});

cypress/tsconfig.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"compilerOptions": {
3-
"types": ["cypress"]
4-
},
5-
"include": ["**/*.ts"]
6-
}
2+
"compilerOptions": {
3+
"types": ["cypress"]
4+
},
5+
"include": ["**/*.ts"]
6+
}

0 commit comments

Comments
 (0)