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

fix(deps): update patch, pin, image digest versions #750

Merged
merged 1 commit into from
Oct 2, 2024

fix(deps): update patch, pin, image digest versions

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

fix(deps): update patch, pin, image digest versions #750

fix(deps): update patch, pin, image digest versions
503af05
Select commit
Loading
Failed to load commit list.
GitHub Actions / Test results succeeded Oct 2, 2024 in 1s

46 passed, 0 failed and 0 skipped

Tests passed successfully

✅ junit.xml

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

Test suite Passed Failed Skipped Time
src/auth/fetchWithToken.test.ts 4✅ 11ms
src/auth/useClearAuthQueryParams.test.ts 2✅ 7ms
src/footer/Footer.test.tsx 1✅ 195ms
src/footer/LinkSection.test.tsx 2✅ 390ms
src/header/Header.test.tsx 3✅ 72ms
src/landing/LandingPage.test.tsx 4✅ 647ms
src/overview/api/habit/api.test.ts 4✅ 75ms
src/overview/api/habit/habit.test.ts 6✅ 5ms
src/overview/api/track/api.test.ts 2✅ 53ms
src/overview/components/Card.test.tsx 1✅ 187ms
src/overview/components/list/HabitList.test.tsx 11✅ 7s
src/overview/components/report/Report.test.tsx 5✅ 548ms
src/overview/OverviewPage.test.tsx 1✅ 2s

✅ 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