Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update docker/login-action action to v3 #545

Merged
merged 1 commit into from
Sep 29, 2023

chore(deps): update docker/login-action action to v3

f5f1985
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore(deps): update docker/login-action action to v3 #545

chore(deps): update docker/login-action action to v3
f5f1985
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / Test results succeeded Sep 29, 2023 in 0s

Test results βœ…

Tests passed successfully

βœ…Β junit.xml

46 tests were completed in 31s with 46 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
src/auth/fetchWithToken.test.ts 4βœ… 12ms
src/auth/useClearAuthQueryParams.test.ts 2βœ… 10ms
src/footer/Footer.test.tsx 1βœ… 159ms
src/footer/LinkSection.test.tsx 2βœ… 142ms
src/header/Header.test.tsx 3βœ… 75ms
src/landing/LandingPage.test.tsx 4βœ… 234ms
src/overview/api/habit/api.test.ts 4βœ… 86ms
src/overview/api/habit/habit.test.ts 6βœ… 7ms
src/overview/api/track/api.test.ts 2βœ… 76ms
src/overview/components/Card.test.tsx 1βœ… 108ms
src/overview/components/list/HabitList.test.tsx 11βœ… 2s
src/overview/components/report/Report.test.tsx 5βœ… 220ms
src/overview/OverviewPage.test.tsx 1βœ… 665ms

βœ…Β src/auth/fetchWithToken.test.ts

src/auth/fetchWithToken.test.ts
  βœ… sets authorization header when token is passed
  βœ… does not set authorization header when token is not passed
  βœ… preserves headers when token is passed
  βœ… preserves headers when token is not passed

βœ…Β src/auth/useClearAuthQueryParams.test.ts

src/auth/useClearAuthQueryParams.test.ts
  βœ… given authentication flow has been completed, search params include state and code should set search params to empty
  βœ… given authentication flow has not been completed should not set search params to empty

βœ…Β src/footer/Footer.test.tsx

src/footer/Footer.test.tsx
  βœ… renders link sections

βœ…Β src/footer/LinkSection.test.tsx

src/footer/LinkSection.test.tsx
  βœ… renders title
  βœ… renders links

βœ…Β src/header/Header.test.tsx

src/header/Header.test.tsx
  βœ… renders codecentric logo
  βœ… renders header text
  βœ… renders github link

βœ…Β src/landing/LandingPage.test.tsx

src/landing/LandingPage.test.tsx
  βœ… given oidc is enabled > starts oidc flow when user clicks on login button
  βœ… given oidc is enabled > renders error when user clicks on login button but oidc flow start fails
  βœ… given oidc is enabled > renders error when auth error occured
  βœ… given oidc is disabled > renders link to overview

βœ…Β src/overview/api/habit/api.test.ts

src/overview/api/habit/api.test.ts
  βœ… create habit > should mutate habit state
  βœ… create habit > should mutate report achievement state
  βœ… delete habit > should mutate habit state
  βœ… delete habit > should mutate report achievement state

βœ…Β src/overview/api/habit/habit.test.ts

src/overview/api/habit/habit.test.ts
  βœ… returns 'once per day' when frequency is DAILY and repetitions is 1
  βœ… returns 'twice per week' when frequency is WEEKLY and repetitions is 2
  βœ… returns '3 times per day' when frequency is DAILY and repetitions is 3
  βœ… returns '4 times per week' when frequency is WEEKLY and repetitions is 4
  βœ… returns '5 times per month' when frequency is MONTHLY and repetitions is 5
  βœ… returns '6 times per year' when frequency is YEARLY and repetitions is 6

βœ…Β src/overview/api/track/api.test.ts

src/overview/api/track/api.test.ts
  βœ… update tracked dates > should mutate tracked dates state
  βœ… update tracked dates > should mutate achievement report state

βœ…Β src/overview/components/Card.test.tsx

src/overview/components/Card.test.tsx
  βœ… renders title

βœ…Β src/overview/components/list/HabitList.test.tsx

src/overview/components/list/HabitList.test.tsx
  βœ… renders list of four habits
  βœ… renders habit titles
  βœ… renders habit schedule
  βœ… renders habit track buttons
  βœ… renders habit delete buttons
  βœ… should delete habit when delete button is clicked
  βœ… filters habits by name based on search query
  βœ… filters habits by schedule based on search query
  βœ… should open datepicker when track button is clicked
  βœ… should highlight already tracked dates when datepicker is open
  βœ… should highlight date when date is selected

βœ…Β src/overview/components/report/Report.test.tsx

src/overview/components/report/Report.test.tsx
  βœ… renders loading message before showing percentages
  βœ… renders rounded week percentage as text
  βœ… renders rounded month percentage as text
  βœ… renders exact week percentage as visualization
  βœ… renders exact month percentage as visualization

βœ…Β src/overview/OverviewPage.test.tsx

src/overview/OverviewPage.test.tsx
  βœ… should add habit when habit creation form is submitted