From cb0f3961219d02872c322c68ee5ba06d132037fc Mon Sep 17 00:00:00 2001 From: Keegan | W3F <35080151+keeganquigley@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:59:13 -0500 Subject: [PATCH] Update delightfuldot_1_keegan.quigley.md --- evaluations/delightfuldot_1_keegan.quigley.md | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/evaluations/delightfuldot_1_keegan.quigley.md b/evaluations/delightfuldot_1_keegan.quigley.md index 2a581f8d9..f0c1bd59a 100644 --- a/evaluations/delightfuldot_1_keegan.quigley.md +++ b/evaluations/delightfuldot_1_keegan.quigley.md @@ -17,3 +17,91 @@ # General Notes Nicely done! Good automatic handling of data formats, and functionalities. Any chance you will support light clients in the future? + +## Tests + +Unit tests all passing in Ubuntu and Codespaces: + +
+ Output + +```ts +@keeganquigley ➜ /workspaces/delightfuldot (w3f-delivery/m1) $ npm test + +> test +> npx lerna run --no-bail --verbose test + +lerna notice cli v7.4.2 +lerna verb packageConfigs Resolving packages based on package.json "workspaces" configuration. +lerna verb rootPath /workspaces/delightfuldot +lerna info versioning independent +lerna verb run Nx target configuration was not found. Task dependencies will not be automatically included. + + > Lerna (powered by Nx) Running target test for 4 projects: + + - delightfuldot + - @delightfuldot/codecs + - @delightfuldot/shape + - @delightfuldot/utils + + ———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————— + +> @delightfuldot/utils:test + + + RUN v0.34.6 /workspaces/delightfuldot/packages/utils + + ✓ src/__tests__/string.spec.ts (11 tests) 6ms + ✓ src/__tests__/assert.spec.ts (7 tests) 6ms + + Test Files 2 passed (2) + Tests 18 passed (18) + Start at 17:55:29 + Duration 1.67s (transform 85ms, setup 0ms, collect 213ms, tests 12ms, environment 906ms, prepare 185ms) + + +> @delightfuldot/shape:test + + + RUN v0.34.6 /workspaces/delightfuldot/packages/shape + + ✓ src/lean/__tests__/index.spec.ts (4 tests) 9ms + ✓ src/extension/__test__/result.spec.ts (10 tests) 8ms + ✓ src/extension/__test__/hex.spec.ts (4 tests) 5ms + ✓ src/extension/__test__/object.spec.ts (1 test) 5ms + ✓ src/extension/__test__/str.spec.ts (2 tests) 5ms + ✓ src/extension/__test__/array.spec.ts (2 tests) 4ms + + Test Files 6 passed (6) + Tests 23 passed (23) + Start at 17:55:33 + Duration 5.40s (transform 95ms, setup 1ms, collect 1.21s, tests 36ms, environment 2.67s, prepare 432ms) + + +> @delightfuldot/codecs:test + + + RUN v0.34.6 /workspaces/delightfuldot/packages/codecs + + ✓ src/registry/__tests__/CodecRegistry.spec.ts (15 tests) 12ms + ✓ src/metadata/__tests__/Metadata.spec.ts (4 tests) 69ms + + Test Files 2 passed (2) + Tests 19 passed (19) + Start at 17:55:41 + Duration 3.16s (transform 128ms, setup 0ms, collect 1.65s, tests 81ms, environment 872ms, prepare 195ms) + + +> delightfuldot:test + + + RUN v0.34.6 /workspaces/delightfuldot/packages/api + + ✓ src/__tests__/DelightfulApi.spec.ts (14 tests) 859ms + + Test Files 1 passed (1) + Tests 14 passed (14) + Start at 17:55:46 + Duration 2.82s (transform 692ms, setup 0ms, collect 1.15s, tests 859ms, environment 423ms, prepare 155ms) +``` +