Julian D.

Results 20 issues of Julian D.

For the moment we have a couple of assertions with the `Value` type that represents a json value. As we are separating the assertion logic from the DSL, it makes...

Add a more convenient way to configure Grillon and reuse configurations. By passing a struct `GrillonConfig` to the associated function `new`. We need to keep a flexible configuration, the builder...

enhancement
rfc

Once https://github.com/besok/jsonpath-rust/issues/40 is fixed, we will be able to extend json path assertions and check if - [ ] the path exists - [ ] also check for false positives/negatives...

enhancement

We currently manage logs via a structure and different methods called depending on the part under test. Ideally each DSL should implement its own behaviour so we can personalize the...

Continue to improve the API so we can test a single header and provide an expression as second argument: `.header("content-type", is("application/json; charset=utf-8"))` this HOF format was first found with #25...

enhancement
rfc

The API should be a bit more more natural without all the boilerplate for passing expected headers. We keep the current way, for flexibility purpose, but we add the possibility...

enhancement
rfc

Just like for #10 add a built-in function for multipart response body in `Response` returning an `Option` struct.

enhancement
rfc

For the moment `grillon` only supports json bodies, Extend the built-in functions with an `html` function in `Response` that returns an `Option` (or a struct allowing to parse html content...

enhancement
rfc

## Bevy version - Commit hash: `ed44eb3913b1180604d468f1ae88fcd2dd3f68a5` - Related PR : https://github.com/bevyengine/bevy/pull/11989 ## What you did During the version 0.13 I implemented animations for a 3D character where I can...

C-Bug
A-Animation
D-Complex
S-Needs-Design

The current implementation of `use_draggable` only works for elements with a fixed position where the boundaries are relative to the window. In order to support other positions, we need to...