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

Bump typescript from 5.3.3 to 5.5.3 #151

Closed
wants to merge 1 commit into from

Bump typescript from 5.3.3 to 5.5.3

39faa87
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Bump typescript from 5.3.3 to 5.5.3 #151

Bump typescript from 5.3.3 to 5.5.3
39faa87
Select commit
Loading
Failed to load commit list.
GitHub Actions / Test results succeeded Jul 8, 2024 in 1s

13 passed, 0 failed and 0 skipped

Tests passed successfully

✔️ test-results.xml

13 tests were completed in 628ms with 13 passed, 0 failed and 0 skipped.

Test suite Passed Failed Skipped Time
src/array-helpers/distinct.spec.ts 2✔️ 4ms
src/array-helpers/group-by.spec.ts 2✔️ 6ms
src/array-helpers/range.spec.ts 2✔️ 17ms
src/array-helpers/sort-by.spec.ts 4✔️ 6ms
src/authorization.spec.ts 2✔️ 3ms
src/json-helpers/get-circular-replacer.spec.ts 1✔️ 3ms

✔️ src/array-helpers/distinct.spec.ts

src/array-helpers/distinct.spec.ts
  ✔️ Distinct > When given a non distinct list > Returns only the distinct items
  ✔️ Distinct > When given distinct objects with non-distinct keys > Returns the first item for each duplicated key

✔️ src/array-helpers/group-by.spec.ts

src/array-helpers/group-by.spec.ts
  ✔️ GroupBy > When grouping primitives > Each group contains all instances of that primitive, order is based on the first occurrence of a key
  ✔️ GroupBy > When grouping non-primitives > Group items appear in the their original order

✔️ src/array-helpers/range.spec.ts

src/array-helpers/range.spec.ts
  ✔️ Range > When generating a range > It is inclusive of the start and end number, and includes all numbers in-between
  ✔️ Range > When generating an invalid range > Throws an error describing the issue

✔️ src/array-helpers/sort-by.spec.ts

src/array-helpers/sort-by.spec.ts
  ✔️ SortBy > When sorting an unordered list > It orders the list
  ✔️ SortBy > When sorting an unordered list descending > It orders the list descending
  ✔️ SortByIgnoreCase > When sorting an unordered list > It orders the list
  ✔️ combineSortFn > When sorting an unordered list by multiple properties > It applies sorting rules in order

✔️ src/authorization.spec.ts

src/authorization.spec.ts
  ✔️ AccessTokenResponse > correctly sets expiry
  ✔️ AccessTokenResponse > correctly evaluates expiry within seconds

✔️ src/json-helpers/get-circular-replacer.spec.ts

src/json-helpers/get-circular-replacer.spec.ts
  ✔️ getCircularReplacer > When stringifying an object with a circular reference > Sets circular references to undefined