dioxus/packages/core/tests
Tristan F. 9167cd9dec
fix most typos, add crate-ci/typos to CI (#2653)
* fix most typos, add crate-ci/typos to CI

---------

Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
2024-07-23 17:49:33 -07:00
..
.rustfmt.toml wip: add diffing tests 2022-11-22 20:16:14 -08:00
attr_cleanup.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
attributes_pass.rs Make clippy happy 2024-03-17 21:39:29 -07:00
boolattrs.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
bubble_error.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
children_drop_futures.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
context_api.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
create_dom.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
create_element.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
create_fragments.rs Fix rsx autocomplete and diagnostics in the root; provide better completions after attributes are finished (#2656) 2024-07-23 16:34:50 -07:00
create_lists.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
create_passthru.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
cycle.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
diff_component.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
diff_element.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
diff_keyed_list.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
diff_unkeyed_list.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
error_boundary.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
event_propagation.rs Implement some clippy fixes 2024-01-30 18:17:45 -08:00
fuzzing.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
hotreload.rs Hotreloading of for/if/body, formatted strings, literals, component props, nested rsx, light CLI rewrite, cli TUI (#2258) 2024-07-17 19:11:18 -07:00
hotreloading.rs chore: make warnings go away 2022-11-29 16:31:04 -05:00
kitchen_sink.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
lifecycle.rs fix most typos, add crate-ci/typos to CI (#2653) 2024-07-23 17:49:33 -07:00
miri_full_app.rs Fix flakey windows tests (#2332) 2024-04-17 15:08:38 -07:00
miri_simple.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
miri_stress.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
README.md work on fixing some core tests 2024-01-10 19:21:15 -06:00
safety.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
suspense.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
task.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
tracing.rs Add tracing to virtual_dom (#1949) 2024-02-29 17:49:35 -06:00

Testing of Dioxus core

Diffing

  • create elements
  • create text
  • create fragments
  • create empty fragments (placeholders)
  • diff elements
  • diff from element/text to fragment
  • diff from element/text to empty fragment
  • diff to element with children works too
  • replace with works forward
  • replace with works backward
  • un-keyed diffing
  • keyed diffing
  • keyed diffing out of order
  • keyed diffing with prefix/suffix
  • suspended nodes work

Lifecycle

  • [] Components mount properly
  • [] Components create new child components
  • [] Replaced components unmount old components and mount new
  • [] Post-render effects are called

Shared Context

  • [] Shared context propagates downwards
  • [] unwrapping shared context if it doesn't exist works too

Suspense

  • [] use_suspense generates suspended nodes

Hooks

  • [] Drop order is maintained
  • [] Shared hook state is okay
  • [] use_hook works
  • [] use_ref works
  • [] use_noderef works
  • [] use_provide_state
  • [] use_consume_state

VirtualDOM API

  • [] work
  • [] rebuild_to_vec
  • [] change props