diff --git a/BurntSushi_ripgrep_14.1.1_15.0.0/srs/milestone_seed_119407d_1_sub-02/SRS.md b/BurntSushi_ripgrep_14.1.1_15.0.0/srs/milestone_seed_119407d_1_sub-02/SRS.md index 06f25b14c151b242d0cc66770b8a151d957111fe..2e74a31ae4b0cee326a24414f5d8193d2a1e1253 100755 --- a/BurntSushi_ripgrep_14.1.1_15.0.0/srs/milestone_seed_119407d_1_sub-02/SRS.md +++ b/BurntSushi_ripgrep_14.1.1_15.0.0/srs/milestone_seed_119407d_1_sub-02/SRS.md @@ -49,12 +49,14 @@ This specification defines requirements for restructuring the hyperlink alias sy **Requirements**: - Create a public `HyperlinkAlias` struct type that encapsulates alias metadata, including the alias name, the format pattern string (the URL template that the alias expands to, e.g. a scheme like `vscode://file/{path}:{line}:{column}`), a human-readable description, and an optional display priority - The type must provide accessor methods for retrieving alias properties +- The format-pattern accessor is an exact internal integration contract: an inherent `const fn format(&self) -> &'static str` must exist and return the alias's format pattern. It must be visible from `crates/printer/src/hyperlink/mod.rs` (for example, use `pub(super)` when `HyperlinkAlias` is defined in `hyperlink/aliases.rs`). Alternative accessor names such as `format_pattern()` do not replace this required `format()` method - The format pattern is used internally for alias resolution: when a user specifies an alias name via `--hyperlink-format`, it resolves to that alias's format pattern - The type must be cloneable and debuggable - The type must support `const` construction for static alias definitions **Acceptance**: - When accessing a `HyperlinkAlias` instance, the `name()` method returns the alias identifier +- When module-local validation calls `alias.format()`, it returns the alias's `&'static str` URL template and that template parses successfully as a `HyperlinkFormat` - When an alias is resolved during format string parsing, its format pattern is used to construct the `HyperlinkFormat` - When the `HyperlinkAlias` type is used in external crates, it is accessible from the printer crate's public API diff --git a/README.md b/README.md index 2cfd6c9481e243da56fc7a70d47e22798a5ba1c4..e82a9e55d7518ebc54e526b723ea10501cb6c22f 100644 --- a/README.md +++ b/README.md @@ -128,8 +128,8 @@ Then follow the [SWE-Milestone setup guide](https://github.com/DeepCommit-ai/SWE ## Citation ```bibtex -@misc{deng2026evoclawevaluatingaiagents, - title={EvoClaw: Evaluating AI Agents on Continuous Software Evolution}, +@misc{deng2026swemilestoneevaluatingaiagents, + title={SWE-Milestone: Evaluating AI Agents on Continuous Software Evolution}, author={Gangda Deng and Zhaoling Chen and Zhongming Yu and Haoyang Fan and Yuhong Liu and Yuxin Yang and Dhruv Parikh and Rajgopal Kannan and Le Cong and Mengdi Wang and Qian Zhang and Viktor Prasanna and Xiangru Tang and Xingyao Wang}, year={2026}, eprint={2603.13428}, diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/Dockerfile.test-compat b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/Dockerfile.test-compat new file mode 100644 index 0000000000000000000000000000000000000000..7228c86ca35ed0c7505e7af40f412881e172aa77 --- /dev/null +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/Dockerfile.test-compat @@ -0,0 +1,61 @@ +ARG MILESTONE_IMAGE=ubuntu:22.04 +FROM ${MILESTONE_IMAGE} + +ARG MILESTONE_ID + +WORKDIR /testbed +SHELL ["/bin/bash", "-c"] + +COPY dockerfiles/dubbo_test_compatibility.sh /usr/local/bin/dubbo_test_compatibility.sh +RUN chmod 0755 /usr/local/bin/dubbo_test_compatibility.sh + +# Patch both evaluator states. Existing ENV-PATCH commits are amended so the +# milestone tag still has the raw START/END state as its direct parent, which +# is the topology used by the evaluator's manifest three-way merge. If an +# image has an unprepared raw tag, create one explicit ENV-PATCH commit. +RUN set -euo pipefail; \ + git_bin=git; \ + if [[ -x /usr/bin/git.real ]]; then git_bin=/usr/bin/git.real; fi; \ + "$git_bin" config --global --add safe.directory /testbed; \ + "$git_bin" config --global user.email "build@evoclaw.local"; \ + "$git_bin" config --global user.name "EvoClaw Benchmark"; \ + for suffix in end start; do \ + tag="milestone-${MILESTONE_ID}-${suffix}"; \ + raw_prefix="$(if [[ "$suffix" == "end" ]]; then echo "End"; else echo "Start"; fi) state for ${MILESTONE_ID}"; \ + "$git_bin" checkout -f "$tag"; \ + head_subject="$("$git_bin" log -1 --format=%s HEAD)"; \ + parent="$("$git_bin" rev-parse HEAD^ 2>/dev/null || true)"; \ + mode=""; \ + if [[ -n "$parent" ]] && \ + { [[ "$head_subject" == "[ENV-PATCH"* ]] || \ + [[ "$head_subject" == "Apply compilation patches"* ]]; }; then \ + mode="amend"; \ + elif [[ "$head_subject" == "$raw_prefix"* ]]; then \ + mode="create"; \ + else \ + echo "ERROR: unsupported prepared-tag topology for $tag" >&2; \ + echo " HEAD: $head_subject" >&2; \ + echo " parent: ${parent:-none}" >&2; \ + exit 48; \ + fi; \ + MILESTONE_ID="${MILESTONE_ID}" /usr/local/bin/dubbo_test_compatibility.sh; \ + compat_targets=( \ + dubbo-metrics/dubbo-tracing/src/test/java/org/apache/dubbo/tracing/utils/ObservationConventionUtils.java \ + ); \ + if [[ "${MILESTONE_ID}" == "M016.1" ]]; then \ + compat_targets+=( \ + dubbo-plugin/dubbo-mutiny/src/test/java/org/apache/dubbo/mutiny/MutinyClientCallsTest.java \ + ); \ + fi; \ + if ! "$git_bin" diff --quiet -- "${compat_targets[@]}"; then \ + "$git_bin" add -- "${compat_targets[@]}"; \ + if [[ "$mode" == "amend" ]]; then \ + "$git_bin" commit --amend --no-verify -m "[ENV-PATCH-v1.0] Stabilize evaluator-owned compatibility tests"; \ + else \ + "$git_bin" commit --no-verify -m "[ENV-PATCH-v1.0] Stabilize evaluator-owned compatibility tests"; \ + fi; \ + "$git_bin" tag -f "$tag"; \ + fi; \ + done; \ + "$git_bin" checkout -f "milestone-${MILESTONE_ID}-start"; \ + test -z "$("$git_bin" status --porcelain)" diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M001.2/Dockerfile b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M001.2/Dockerfile index ee9016f3efaed140332c81dd53fa1ba275c67106..d7dbd95cbef776736826b0e18408f4395eb7d28f 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M001.2/Dockerfile +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M001.2/Dockerfile @@ -1,5 +1,6 @@ -# Build on pre-configured base image -FROM apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/baseline_rerun_stage4_002_fix2/base:latest +# Build from the canonical pinned base image. The historical +# baseline_rerun_stage4_002_fix2 tag is no longer published/reproducible. +FROM swe-milestone/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6__base:v1.0 WORKDIR /testbed # Use the testbed from base image directly (it already contains milestone tags) @@ -17,18 +18,14 @@ RUN echo '#!/bin/bash' > /usr/local/bin/apply_patches.sh && \ echo 'cd /testbed' >> /usr/local/bin/apply_patches.sh && \ echo '' >> /usr/local/bin/apply_patches.sh && \ echo '# Handle dubbo-spring6-security module' >> /usr/local/bin/apply_patches.sh && \ - echo 'if [ ! -d "dubbo-plugin/dubbo-spring6-security" ]; then' >> /usr/local/bin/apply_patches.sh && \ + echo 'if [ ! -f "dubbo-plugin/dubbo-spring6-security/pom.xml" ]; then' >> /usr/local/bin/apply_patches.sh && \ echo ' echo ">>> Removing dubbo-spring6-security references (START state)"' >> /usr/local/bin/apply_patches.sh && \ echo ' sed -i "/dubbo-plugin\\/dubbo-spring6-security<\\/module>/d" pom.xml' >> /usr/local/bin/apply_patches.sh && \ echo ' if [ -f "dubbo-distribution/dubbo-all/pom.xml" ]; then' >> /usr/local/bin/apply_patches.sh && \ - echo ' perl -i -0777 -pe "s/\\s*org\\.apache\\.dubbo<\\/groupId>\\s*dubbo-spring6-security<\\/artifactId>\\s*<\\/dependency>\\s*//gs" dubbo-distribution/dubbo-all/pom.xml' >> /usr/local/bin/apply_patches.sh && \ + echo ' perl -i -0777 -pe "s#\\s*org\\.apache\\.dubbo\\s*dubbo-spring6-security.*?\\s*##gs; s#\\s*org\\.apache\\.dubbo:dubbo-spring6-security##g" dubbo-distribution/dubbo-all/pom.xml' >> /usr/local/bin/apply_patches.sh && \ echo ' fi' >> /usr/local/bin/apply_patches.sh && \ echo 'else' >> /usr/local/bin/apply_patches.sh && \ - echo ' echo ">>> Removing dubbo-spring6-security module from build (END state)"' >> /usr/local/bin/apply_patches.sh && \ - echo ' sed -i "/dubbo-plugin\\/dubbo-spring6-security<\\/module>/d" pom.xml' >> /usr/local/bin/apply_patches.sh && \ - echo ' if [ -f "dubbo-distribution/dubbo-all/pom.xml" ]; then' >> /usr/local/bin/apply_patches.sh && \ - echo ' perl -i -0777 -pe "s/\\s*org\\.apache\\.dubbo<\\/groupId>\\s*dubbo-spring6-security<\\/artifactId>\\s*<\\/dependency>\\s*//gs" dubbo-distribution/dubbo-all/pom.xml' >> /usr/local/bin/apply_patches.sh && \ - echo ' fi' >> /usr/local/bin/apply_patches.sh && \ + echo ' echo ">>> Keeping dubbo-spring6-security in the END reactor"' >> /usr/local/bin/apply_patches.sh && \ echo 'fi' >> /usr/local/bin/apply_patches.sh && \ echo '' >> /usr/local/bin/apply_patches.sh && \ echo '# Fix dubbo-security/pom.xml to use new bouncycastle artifact names' >> /usr/local/bin/apply_patches.sh && \ @@ -40,6 +37,14 @@ RUN echo '#!/bin/bash' > /usr/local/bin/apply_patches.sh && \ echo ' perl -i -0777 -pe "s/\\s*org\\.bouncycastle<\\/groupId>\\s*bcprov-ext-jdk1[58]on<\\/artifactId>\\s*<\\/dependency>\\s*//s" dubbo-plugin/dubbo-security/pom.xml' >> /usr/local/bin/apply_patches.sh && \ echo 'fi' >> /usr/local/bin/apply_patches.sh && \ echo '' >> /usr/local/bin/apply_patches.sh && \ + echo '# Keep an agent-overlaid dependency BOM compatible with the M001.2 BouncyCastle migration' >> /usr/local/bin/apply_patches.sh && \ + echo 'BOUNCYCASTLE_BOM="dubbo-dependencies-bom/pom.xml"' >> /usr/local/bin/apply_patches.sh && \ + echo 'if [ -f "$BOUNCYCASTLE_BOM" ]; then' >> /usr/local/bin/apply_patches.sh && \ + echo ' sed -i -E "s#[^<]+#1.81#g" "$BOUNCYCASTLE_BOM"' >> /usr/local/bin/apply_patches.sh && \ + echo ' sed -i "s/bcprov-jdk15on/bcprov-jdk18on/g; s/bcpkix-jdk15on/bcpkix-jdk18on/g" "$BOUNCYCASTLE_BOM"' >> /usr/local/bin/apply_patches.sh && \ + echo ' perl -i -0777 -pe "s#\\s*org\\.bouncycastle\\s*bcprov-ext-jdk1[58]on.*?\\s*##s" "$BOUNCYCASTLE_BOM"' >> /usr/local/bin/apply_patches.sh && \ + echo 'fi' >> /usr/local/bin/apply_patches.sh && \ + echo '' >> /usr/local/bin/apply_patches.sh && \ echo '# Comment out testAllLogMethod in LoggerTest.java (idempotent)' >> /usr/local/bin/apply_patches.sh && \ echo 'LOGGER_TEST="dubbo-common/src/test/java/org/apache/dubbo/common/logger/LoggerTest.java"' >> /usr/local/bin/apply_patches.sh && \ echo 'if ! sed -n "48p" "$LOGGER_TEST" | grep -q "^/\\*$"; then' >> /usr/local/bin/apply_patches.sh && \ diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M004/Dockerfile b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M004/Dockerfile index a27655a87934ed9faa3f0cda07cf381c4884bfbc..2e8713d4aad337c10553098b2d3b75160715b4ab 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M004/Dockerfile +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M004/Dockerfile @@ -42,6 +42,13 @@ sed -i 's/bcprov-jdk15on/bcprov-jdk18on/g' dubbo-plugin/dubbo-security/pom.xml sed -i 's/bcpkix-jdk15on/bcpkix-jdk18on/g' dubbo-plugin/dubbo-security/pom.xml # Remove bcprov-ext-jdk dependency perl -i -0pe 's/\s*\s*org\.bouncycastle<\/groupId>\s*bcprov-ext-jdk\d+on<\/artifactId>\s*<\/dependency>//gs' dubbo-plugin/dubbo-security/pom.xml +# Keep this evaluator-owned POM self-contained. Agent snapshots may +# legitimately overlay an older BOM which does not manage the jdk18 artifacts. +for artifact in bcprov-jdk18on bcpkix-jdk18on; do + if ! grep -A1 "${artifact}" dubbo-plugin/dubbo-security/pom.xml | grep -q ''; then + sed -i "/${artifact}<\/artifactId>/a\\ 1.81" dubbo-plugin/dubbo-security/pom.xml + fi +done # ===== Remove dubbo-spring6-security module ===== sed -i '/dubbo-plugin\/dubbo-spring6-security<\/module>/d' pom.xml 2>/dev/null || true diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/Dockerfile b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/Dockerfile index bc0fe6de5cc213fc7a85a67289a619e32a41c1b3..eefd98bebef32f8c7e650012bdc9c2884be25f9a 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/Dockerfile +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/Dockerfile @@ -57,10 +57,13 @@ if [ -f dubbo-plugin/dubbo-security/pom.xml ]; then sed -i 's/bcprov-jdk15on/bcprov-jdk18on/g' dubbo-plugin/dubbo-security/pom.xml 2>/dev/null || true sed -i 's/bcpkix-jdk15on/bcpkix-jdk18on/g' dubbo-plugin/dubbo-security/pom.xml 2>/dev/null || true sed -i 's/bcprov-ext-jdk15on/bcprov-ext-jdk18on/g' dubbo-plugin/dubbo-security/pom.xml 2>/dev/null || true - # Add version for bcprov-ext-jdk18on if not present - if ! grep -A1 "bcprov-ext-jdk18on" dubbo-plugin/dubbo-security/pom.xml | grep -q ""; then - sed -i '/bcprov-ext-jdk18on<\/artifactId>/a\ 1.78.1' dubbo-plugin/dubbo-security/pom.xml 2>/dev/null || true - fi + # Keep this evaluator-owned POM self-contained. Agent snapshots may + # legitimately overlay an older BOM which does not manage jdk18 artifacts. + for artifact in bcprov-jdk18on bcpkix-jdk18on bcprov-ext-jdk18on; do + if ! grep -A1 "${artifact}" dubbo-plugin/dubbo-security/pom.xml | grep -q ''; then + sed -i "/${artifact}<\/artifactId>/a\\ 1.81" dubbo-plugin/dubbo-security/pom.xml 2>/dev/null || true + fi + done fi # ===== Remove dubbo-spring6-security module ===== diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/test_config.json b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/test_config.json index 161892c67d1bd661ab37704e78bc9ef161b25a11..bce48a2aad341deb9d742f7ac57aea1e9ba033d0 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/test_config.json +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M006/test_config.json @@ -3,6 +3,7 @@ "name": "default", "test_states": ["start", "end"], "test_cmd": "mvn test -Dmaven.test.failure.ignore=true -Dsurefire.timeout={timeout} -Pskip-spotless -Dcheckstyle.skip=true -Drat.skip=true 2>&1 | tee /output/{output_file}", - "description": "Run all Maven tests with default configuration" + "description": "Run all Maven tests with default configuration", + "run_timeout_seconds": 3600 } ] diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M017/Dockerfile b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M017/Dockerfile index 66a61b47c8ae34f053a288096e9643b579f0b1dc..19611119311cd3d8ce4afc07c9620fd418e630b4 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M017/Dockerfile +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M017/Dockerfile @@ -26,6 +26,10 @@ RUN cat > /tmp/dubbo-spring6-security-pom.xml << 'POMEOF' 17 17 false + + 6.2.8 + 6.5.1 + 3.5.0 1.5.1 diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M025/test_config.json b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M025/test_config.json index 406d74bc7f83c047dbfa79ef9a876ca19906f36d..130e06e811042bc17fe2e12e383515c30cbc8800 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M025/test_config.json +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/M025/test_config.json @@ -2,7 +2,7 @@ { "name": "default", "test_states": ["start", "end"], - "test_cmd": "/usr/local/bin/apply_patches.sh && mvn test -Dmaven.test.failure.ignore=true -Dsurefire.timeout={timeout} -Pskip-spotless -Dcheckstyle.skip=true -Drat.skip=true 2>&1 | tee /output/{output_file}", + "test_cmd": "mvn test -Dmaven.test.failure.ignore=true -Dsurefire.timeout={timeout} -Pskip-spotless -Dcheckstyle.skip=true -Drat.skip=true 2>&1 | tee /output/{output_file}", "description": "Run all tests with Maven" } ] diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/dubbo_test_compatibility.sh b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/dubbo_test_compatibility.sh new file mode 100644 index 0000000000000000000000000000000000000000..3a28f9b53b1d5cc49c5afcafdb387284e30e4a66 --- /dev/null +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/dubbo_test_compatibility.sh @@ -0,0 +1,109 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /testbed + +observation_utils="dubbo-metrics/dubbo-tracing/src/test/java/org/apache/dubbo/tracing/utils/ObservationConventionUtils.java" +mutiny_client_calls_test="dubbo-plugin/dubbo-mutiny/src/test/java/org/apache/dubbo/mutiny/MutinyClientCallsTest.java" + +if [[ ! -f "$observation_utils" ]]; then + echo "ERROR: Micrometer test compatibility target is missing: $observation_utils" >&2 + exit 44 +fi + +# Micrometer 1.13.x stores KeyValues in a private `keyValues` field, while +# 1.14+ uses a private `sortedSet` field plus a logical length. The benchmark +# test must observe KeyValues through its stable public Iterable contract +# instead of depending on either implementation detail. +if grep -Eq 'KeyValues\.class\.getDeclaredField\("(keyValues|sortedSet)"\)' "$observation_utils"; then + sed -E -i \ + -e '/^import java\.lang\.reflect\.Field;$/d' \ + -e '/Field f = KeyValues\.class\.getDeclaredField/,+2d' \ + -e 's/for \(KeyValue keyValue : kv\)/for (KeyValue keyValue : keyValues)/' \ + "$observation_utils" +fi + +# Removing the java.lang.reflect import leaves two adjacent blank lines +# between the Dubbo and Micrometer import groups. Normalize only that exact +# boundary; changing broader whitespace here could hide unrelated formatting +# defects in the benchmark source. +sed -i \ + '/^import org\.apache\.dubbo\.rpc\.Invoker;$/ { + N + N + N + s/\n\n\nimport io\.micrometer\.common\.KeyValue;/\n\nimport io.micrometer.common.KeyValue;/ + }' \ + "$observation_utils" + +# Fail closed if the upstream helper changes shape. A silent no-op would +# reproduce the version-specific false failures this patch is meant to remove. +if grep -q 'KeyValues\.class\.getDeclaredField' "$observation_utils"; then + echo "ERROR: ObservationConventionUtils still reflects into KeyValues" >&2 + exit 45 +fi +if grep -q '^import java\.lang\.reflect\.Field;' "$observation_utils"; then + echo "ERROR: stale java.lang.reflect.Field import remains" >&2 + exit 46 +fi +if ! grep -Fq 'for (KeyValue keyValue : keyValues)' "$observation_utils"; then + echo "ERROR: ObservationConventionUtils does not use the public KeyValues iterator" >&2 + exit 47 +fi +import_window=$( + sed -n \ + '/^import org\.apache\.dubbo\.rpc\.Invoker;$/,/^import io\.micrometer\.common\.KeyValue;$/p' \ + "$observation_utils" +) +expected_import_window=$'import org.apache.dubbo.rpc.Invoker;\n\nimport io.micrometer.common.KeyValue;' +if [[ "$import_window" != "$expected_import_window" ]]; then + echo "ERROR: ObservationConventionUtils import boundary is not Spotless-compatible" >&2 + printf '%s\n' "$import_window" >&2 + exit 48 +fi + +echo ">>> Dubbo test compatibility patch applied successfully" + +# M016.1 owns a negative-path test that deliberately feeds an exception into +# the candidate implementation. An implementation that drops that exception +# leaves Mutiny's indefinite await blocked forever. Surefire's fork timeout is +# not a reliable assertion boundary: depending on fork shutdown timing it can +# either omit this test report and continue, or hang the whole reactor until the +# evaluator's outer timeout. Bound the evaluator-owned await instead, so a +# correct implementation still observes "boom" immediately while an incorrect +# implementation becomes a deterministic failing test after ten seconds. +if [[ "${MILESTONE_ID:-}" == "M016.1" ]]; then + if [[ ! -f "$mutiny_client_calls_test" ]]; then + echo "ERROR: Mutiny compatibility target is missing: $mutiny_client_calls_test" >&2 + exit 49 + fi + + mutiny_method=$( + sed -n \ + '/void testOneToOneThrowsErrorWithMutinyAwait()/,/^[[:space:]]*@Test/p' \ + "$mutiny_client_calls_test" + ) + if grep -Fq 'response.await().indefinitely();' <<<"$mutiny_method"; then + sed -i \ + '/void testOneToOneThrowsErrorWithMutinyAwait()/,/^[[:space:]]*@Test/ { + s/response\.await()\.indefinitely();/response.await().atMost(Duration.ofSeconds(10));/ + }' \ + "$mutiny_client_calls_test" + fi + + mutiny_method=$( + sed -n \ + '/void testOneToOneThrowsErrorWithMutinyAwait()/,/^[[:space:]]*@Test/p' \ + "$mutiny_client_calls_test" + ) + if ! grep -Fq 'response.await().atMost(Duration.ofSeconds(10));' <<<"$mutiny_method"; then + echo "ERROR: Mutiny negative-path await is not bounded" >&2 + exit 50 + fi + if grep -Fq 'response.await().indefinitely();' <<<"$mutiny_method"; then + echo "ERROR: Mutiny negative-path test still contains an indefinite await" >&2 + exit 51 + fi + + echo ">>> Dubbo M016.1 Mutiny negative-path wait bounded successfully" +fi diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/evaluation_post_snapshot.sh b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/evaluation_post_snapshot.sh new file mode 100644 index 0000000000000000000000000000000000000000..984a3956b72806daa10947d43e2264c2e6e53807 --- /dev/null +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/dockerfiles/evaluation_post_snapshot.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /testbed + +# Keep this script limited to build/test environment closure. It must never +# alter production Java sources or the benchmark's authoritative test sources. +SPRING6_POM="dubbo-plugin/dubbo-spring6-security/pom.xml" +BASE_SECURITY_POM="dubbo-plugin/dubbo-spring-security/pom.xml" +BASE_SECURITY_TEST="dubbo-plugin/dubbo-spring-security/src/test/java/org/apache/dubbo/spring/security/jackson/ObjectMapperCodecTest.java" +SPRING6_SECURITY_TEST="dubbo-plugin/dubbo-spring6-security/src/test/java/org/apache/dubbo/spring/security/oauth2/DeserializationTest.java" +SECURITY_POM="dubbo-plugin/dubbo-security/pom.xml" +DEPENDENCY_BOM="dubbo-dependencies-bom/pom.xml" + +if [[ -f pom.xml && -f "$SPRING6_POM" ]]; then + if ! perl -0777 -ne ' + exit(m{(?:(?!).)*?jdk-version-ge-17 + (?:(?!).)*?dubbo-plugin/dubbo-spring6-security + (?:(?!).)*?}sx ? 0 : 1) + ' pom.xml; then + perl -0777 -i -pe ' + $changed = s{((?:(?!).)*?jdk-version-ge-17 + (?:(?!).)*?)} + {$1 . "\n dubbo-plugin/dubbo-spring6-security"}sex; + die "jdk-version-ge-17 profile/modules block missing\n" unless $changed; + ' pom.xml + fi +fi + +# The evaluator restores the authoritative END tests but intentionally does +# not overwrite agent manifests with END POMs. Keep that source-authority +# boundary while supplying the test-only dependency closure required by the +# restored ObjectMapperCodecTest. Raw M001.2 END declares this exact +# dependency; adding it at test scope neither changes the produced artifact nor +# restores any ground-truth implementation. +if [[ -f "$BASE_SECURITY_POM" && -f "$BASE_SECURITY_TEST" ]] && + grep -q 'org.springframework.security.oauth2.client' "$BASE_SECURITY_TEST" && + ! grep -q 'spring-security-oauth2-client' "$BASE_SECURITY_POM"; then + perl -0777 -i -pe ' + $dependency = qq{ + + + org.springframework.security + spring-security-oauth2-client + test + true + +}; + # Consume the indentation of the original closing tag. Leaving those + # spaces behind creates a whitespace-only line that Dubbo Spotless + # rejects late in the reactor, skipping every following module. + $changed = s{(?:^[ \t]*\n)*^[ \t]*} + {$dependency . " "}me; + die "base Spring Security dependencies block missing\n" unless $changed; + ' "$BASE_SECURITY_POM" +fi + +# M001.2's legacy image hook migrates dubbo-security from the unavailable +# jdk15on BouncyCastle artifacts to jdk18on. Snapshot manifest restoration +# happens after that hook and can put the agent BOM back, leaving the +# evaluator-modified consumer without version management. Reapply the matching +# BOM half of the image-owned migration; never add or change Java code. +if [[ -f "$SECURITY_POM" && -f "$DEPENDENCY_BOM" ]] && + grep -q 'bcprov-jdk18on' "$SECURITY_POM"; then + sed -i -E \ + 's#[^<]+#1.81#g' \ + "$DEPENDENCY_BOM" + # Some cumulative agent snapshots carry a second legacy property. The + # image hook rewrites those managed artifactIds to jdk18on as well, so a + # stale 1.70 value would create a duplicate, unresolvable jdk18on entry. + sed -i -E \ + 's#[^<]+#1.81#g' \ + "$DEPENDENCY_BOM" + sed -i \ + 's/bcprov-jdk15on/bcprov-jdk18on/g; s/bcpkix-jdk15on/bcpkix-jdk18on/g' \ + "$DEPENDENCY_BOM" + perl -0777 -i -pe ' + s{\s*org\.bouncycastle\s* + bcprov-ext-jdk1[58]on.*?\s*}{}gsx + ' "$DEPENDENCY_BOM" + + # The agent may legitimately retain a 3.3.3 root POM while the + # milestone-owned hook above migrates this consumer to jdk18on. Maven + # resolves imported BOMs while building the project model, before the + # reactor's rewritten BOM can repair that cross-vintage import. Pin the + # exact version owned by the same environment migration on the two + # migrated consumer edges so model construction remains self-consistent. + perl -0777 -i -pe ' + s{(\s*org\.bouncycastle\s* + (?:bcprov|bcpkix)-jdk18on) + (?!\s*)} + {$1 . "\n 1.81"}gsex + ' "$SECURITY_POM" +fi + +# DeserializationTest is an authoritative END test grafted by the evaluator. +# Its Spring test harness and Dubbo bootstrap are supplied by test-scoped +# dependencies in the raw M001.2 END POM. Preserve the agent's production POM +# while restoring only those test harness edges when the snapshot omitted them. +if [[ -f "$SPRING6_POM" && -f "$SPRING6_SECURITY_TEST" ]]; then + spring6_test_dependencies="" + if grep -q 'org.springframework.boot.test.context.SpringBootTest' "$SPRING6_SECURITY_TEST" && + ! grep -q 'spring-boot-starter-test' "$SPRING6_POM"; then + spring6_test_dependencies+=$'\n + + org.springframework.boot + spring-boot-starter-test + ${spring-boot-3.version} + test + true + + + ch.qos.logback + logback-classic + + + \n' + fi + if grep -q 'org.apache.dubbo.config.bootstrap.DubboBootstrap' "$SPRING6_SECURITY_TEST" && + ! grep -q 'dubbo-config-spring6' "$SPRING6_POM"; then + spring6_test_dependencies+=$'\n + + org.apache.dubbo + dubbo-config-spring6 + ${project.parent.version} + test + true + \n' + fi + if [[ -n "$spring6_test_dependencies" ]]; then + SPRING6_TEST_DEPENDENCIES="$spring6_test_dependencies" perl -0777 -i -pe ' + $changed = s{(?:^[ \t]*\n)*^[ \t]*(?!.*)} + {$ENV{SPRING6_TEST_DEPENDENCIES} . " "}mse; + die "Spring 6 Security dependencies block missing\n" unless $changed; + ' "$SPRING6_POM" + fi +fi + +echo ">>> Evaluation Maven closure applied successfully" diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.1/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.1/SRS.md index 79f5347c3a7a3e4502fb369c35fc77a8c25f3565..abe4fb0f80bd781b71fc207252befbda1f6aee70 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.1/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.1/SRS.md @@ -194,6 +194,12 @@ The implementation must support the following usage patterns commonly encountere --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) Add test-scoped dependency for Spring Authorization Server types (RegisteredClient, OAuth2ClientAuthenticationToken, ClientSettings, TokenSettings, etc.) to enable serialization testing. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.2/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.2/SRS.md index 5ed54cf956bc5d08109ca1dfc6d27854991cad79..b285aa504de69dec7ada825f4cc328c38629c50d 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.2/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M001.2/SRS.md @@ -33,7 +33,7 @@ This milestone addresses two related concerns in the Apache Dubbo framework: - The new module must require JDK 17 as the minimum compilation target - The new module should depend on `dubbo-spring-security` to reuse common serialization infrastructure - All OAuth2-related code (the `oauth2` package) must be moved from `dubbo-spring-security` to the new module -- The base `dubbo-spring-security` module must remove OAuth2 dependencies and must continue working for users on older Spring versions without OAuth2 features +- The base `dubbo-spring-security` module must remove OAuth2 dependencies from its production dependency surface and must continue working for users on older Spring versions without OAuth2 features. Dependencies needed only to compile and run the base module's existing non-`oauth2`-package tests may remain with Maven `test` scope; those tests must remain compilable and passing. - The new module must register its OAuth2 serialization support through Dubbo's SPI extension mechanism, allowing dynamic registration when the module is present on the classpath - The new module must be properly integrated into the project build system: - Added to the BOM for dependency management @@ -71,6 +71,12 @@ This milestone addresses two related concerns in the Apache Dubbo framework: --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) No changes detected. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M002/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M002/SRS.md index 7cfd301095e3bec82bac0f891fb79ecd79d6edc2..36c6456d893032365bd534705fa82c1a84e10259 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M002/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M002/SRS.md @@ -134,6 +134,12 @@ tests with real network connections, which are beyond the scope of the current t --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) No changes detected. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.1/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.1/SRS.md index efe2a6e4d77928aae5a7b5b3f67c42f82f13a04b..3a762d82497699c7e73843bb2408d16ad101d8df 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.1/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.1/SRS.md @@ -53,10 +53,7 @@ This milestone establishes the module configuration and code generation template ### Testing Approach -The Mustache templates and pom.xml configuration are indirectly verified through the code generation test: - -#### Code Generation Test -- `testMessageGenerator` - Tests the protobuf code generation pipeline which uses the Mustache templates +The Mustache templates and pom.xml configuration are indirectly verified through the code generation test. **Note**: Direct unit tests for Mustache template syntax or pom.xml structure are not provided. Validation is performed through: 1. Successful Maven build (pom.xml correctness) @@ -64,6 +61,12 @@ The Mustache templates and pom.xml configuration are indirectly verified through --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) ## Java/Maven Dependencies diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.2/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.2/SRS.md index 84707fd3a09f8f0a1c9d6d055fd0945a1be01c77..445c85337f886911a57f533bc018a7b6b99ccc1a 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.2/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.2/SRS.md @@ -67,6 +67,7 @@ This specification defines the requirements for implementing core reactive abstr - When `onError` is called, the error is forwarded to the downstream observer - When `onComplete` is called, the completion signal is forwarded to the downstream observer - When `cancel` is called, the upstream subscription is cancelled +- The cancellation-state accessor is spelled `isCancelled()` (public, no-argument, boolean; double-'l') — deliberately differing from the Reactor subscriber's `isCanceled()` (single 'l') ### FR3: Client-Side Publisher for Streaming Responses @@ -133,26 +134,9 @@ This specification defines the requirements for implementing core reactive abstr --- -## Test Acceptance Criteria +## Repository-wide Formatting Contract -### Testing Limitations - -The Publisher/Subscriber classes in this milestone operate at the reactive stream abstraction layer. -The available test suite (`f2p_tests_list`) contains tests that do not directly exercise these classes: - -**Available tests (not directly related)**: -- `RestProtocolTest::bean argument post test` - Tests REST parameter binding -- `RestProtocolTest::bean argument test` - Tests REST parameter binding - -These tests verify REST protocol functionality and do not test the Mutiny Publisher/Subscriber abstractions. - -### Verification Approach - -The Publisher/Subscriber classes are verified through: -1. **Integration Testing** (M003.3): The downstream milestone M003.3 contains tests (`MutinyServerCallsTest`, `MutinyClientCallsTest`) that exercise these abstractions through the `MutinyClientCalls` and `MutinyServerCalls` utilities. -2. **Build Verification**: Successful compilation confirms API contract correctness. - -**Note**: Direct unit tests for Publisher/Subscriber classes are not included in the current test suite. Full verification requires running M003.3 tests which depend on this milestone. +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. --- diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.3/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.3/SRS.md index a2e95354d3d1faa646d459530f1210dc61077842..cbce2f33e73b7678e0895f88991f9e07e7c292af 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.3/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M003.3/SRS.md @@ -171,6 +171,12 @@ This milestone implements comprehensive Mutiny reactive streaming support for Ap --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) No changes detected. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M004/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M004/SRS.md index ee5e38b2b271832bab447bf052f48e2930d9723e..89431c33cf2c7c1e84d829447e6d9f0eb6878124 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M004/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M004/SRS.md @@ -2,7 +2,7 @@ ## Overview -This milestone addresses stream parameter handling in REST argument resolution, establishes Server-Sent Events (SSE) infrastructure, and enhances RadixTree with configurable duplicate value detection. The tested functionalities are stream parameter skipping in REST argument resolvers and RadixTree duplicate handling; SSE infrastructure is also implemented but has no fail-to-pass tests. +This milestone addresses stream parameter handling in REST argument resolution, establishes Server-Sent Events (SSE) infrastructure, and enhances RadixTree with configurable duplicate value detection. **Affected Modules**: @@ -106,6 +106,12 @@ This milestone addresses stream parameter handling in REST argument resolution, --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) No changes detected. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.1/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.1/SRS.md index 2cb534450e8d44c31b1769f0af3f5d0b615f4232..ae07f04894c92097b193b082eb2bf6a48b442a38 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.1/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.1/SRS.md @@ -174,6 +174,12 @@ affinityAware: | affinityAware.ratio | number | No | Fallback threshold percentage (default: 0, range: 0-100) | +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.2/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.2/SRS.md index ddbc28e09cf3edfb39bd647af58d0b6b1949b52e..e3ae47d36ec0b345a30ccfc06b6e3af95e627701 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.2/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M005.2/SRS.md @@ -105,6 +105,12 @@ This specification defines requirements for implementing configuration-based aff - When the router chain is built, the service-level affinity router (order 130) is positioned before the application-level affinity router (order 135) +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M006/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M006/SRS.md index 22f519496a95e40acb310619ca63c024c78b7aa0..fab9211e780ccf24dc17e6222ca2fecf30c95854 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M006/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M006/SRS.md @@ -87,6 +87,12 @@ only has the request parameter types. - The fix must not alter the routing behavior for paths that have only a single registration +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M007/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M007/SRS.md index ef821e591fe8e164b0310227eaf6259619c59dc1..b9f8f96f06a4d462c180b7c6346fe5ba30a83255 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M007/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M007/SRS.md @@ -70,6 +70,12 @@ to share the counter with other methods. - Disabling TPS for a specific method shall only affect that method's counter, not other methods' counters +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M010/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M010/SRS.md index 24c6519d2cff94ffbb7481d67b0a7bebd997e43e..e67239751128608644795cae442b8d9f9b0c2015 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M010/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M010/SRS.md @@ -87,6 +87,12 @@ This specification defines the requirements for upgrading the Bouncy Castle cryp - Individual modules should inherit versions from the BOM without explicit version declarations +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M011/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M011/SRS.md index 88924aeff9a571a6a752e11d05c199008648bc59..7990a52674f4b4d3f47173ff47902498c33efce3 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M011/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M011/SRS.md @@ -197,6 +197,12 @@ The following test scenarios must pass: 5. Existing functionality without FQCN specification continues to operate normally +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M012/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M012/SRS.md index 6cf8ac79878b17b4fbc3607817f939c65d0ee728..4ad656b0d52e1e785e2adf947fe179a650b5845d 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M012/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M012/SRS.md @@ -208,6 +208,12 @@ rapid service startup/shutdown or error conditions. - `MetricsEventBus.error(MetricsEvent event)` must check `if (event instanceof TimeCounterEvent)` before casting to `TimeCounterEvent` +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M013/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M013/SRS.md index 14f0c9ed924824f9f946d7ea9007d071c29a45b6..cccab6fe83ce20e31a1e372fdb0167e6d5395deb 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M013/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M013/SRS.md @@ -84,6 +84,12 @@ This specification defines requirements for enhancing Dubbo's environment variab - When requesting a property with an empty or null key, null is returned +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M014/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M014/SRS.md index 137f502189745eda59f6d3ea9ccbd28a55b41326..0ec0b91cf6d2a771a224d13f9ed4906b3dfb48eb 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M014/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M014/SRS.md @@ -33,6 +33,12 @@ This specification defines the requirements for enabling automatic configuration - The auto-configured property must be added to the `MapPropertySource` named `"defaultProperties"` (accessible via `propertySources.get("defaultProperties")`), not just to the environment, allowing it to be overridden by user-specified properties with higher precedence +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M015/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M015/SRS.md index cb911beb4668156f1d72b085ca3341e20bbb524b..c30904abe465111bc787db62702be6e23e7e5045 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M015/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M015/SRS.md @@ -114,6 +114,12 @@ This milestone consolidates third-party dependency version updates across multip - All transitive dependency resolutions must complete without errors +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M016.1/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M016.1/SRS.md index cd2e1299fd673d1203ef00cd6b1ec4f1e230572c..23bee2ee77101cecd1deb631355ecb3d19b3e355 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M016.1/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M016.1/SRS.md @@ -178,6 +178,12 @@ This milestone addresses REST protocol bean argument binding issues and various --- +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + +--- + # Environment Dependency Changes (relative to Base Env) No changes detected. diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M017/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M017/SRS.md index 4a11c614276931945e17d098c8b5570d6c38190d..2a82378c63e0d75523a0b9a717c301045b47270f 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M017/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M017/SRS.md @@ -204,6 +204,12 @@ its heartbeat field. - In `CertManager.getProviderConnectionConfig()`, call the new overloaded methods passing the `remoteAddress` parameter +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M018/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M018/SRS.md index e56cf7bce1ed4fbc8ddb7014d3e3e9a52bbbc369..333c615604de8e86a24094f7deaf4e79d92730d6 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M018/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M018/SRS.md @@ -84,6 +84,12 @@ The following REST protocol bean argument handling tests verify that the optimiz **Note**: FR1, FR2, and FR3 are marked as EXTENDED because the available tests focus on REST protocol bean argument handling, which exercises the code paths indirectly but does not directly validate the specific performance optimizations described above +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M019/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M019/SRS.md index 2b9a45fbeff5e9d01cbe66508007d3e0ff4f03b5..8b52482d42781129cdf13907cb67fd16910ec7ce 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M019/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M019/SRS.md @@ -104,6 +104,12 @@ This milestone consolidates minor feature additions and enhancements to Apache D - OS-type detection properties (e.g., os.detected.classifier) are available during the build lifecycle +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M020/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M020/SRS.md index 2163285228d6bf70143179566a02c758f624fec6..6ccc7e6d3f20d07a231eca37a751167fc7e68aaa 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M020/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M020/SRS.md @@ -123,12 +123,18 @@ This milestone addresses test infrastructure dependency management issues across - `dubbo-remoting-zookeeper-curator5` does not contain `dubbo-test-common` dependency ### Test Verification -- REST protocol tests in `dubbo-rpc/dubbo-rpc-triple` pass (test class: `org.apache.dubbo.rpc.protocol.tri.rest.support.basic.RestProtocolTest`), specifically: +- REST protocol tests in `dubbo-rpc/dubbo-rpc-triple` pass, specifically: - Bean argument tests with POST requests to `/buy` and `/buy2` endpoints - Tests handling both array-style (`[Book]`, `[Book, count]`) and map-style (`{book: Book, count: int}`) request bodies - Response deserialization to `Book` bean with correctly populated `name` attribute +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M021/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M021/SRS.md index 1f515e3f9f5a050dd2c240dfc8f146f2a119032e..feec04317e549d1732dc47252b1bf34abac090b4 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M021/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M021/SRS.md @@ -66,6 +66,12 @@ These are non-functional changes that improve maintainability, reduce build comp - The plugin builds and functions correctly with the corrected version configuration +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M022/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M022/SRS.md index d38f12a1207697596494bb4bc284530cca112215..71aa3dd0cf4cc65265a94213dbb0fb7a0740bd20 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M022/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M022/SRS.md @@ -83,6 +83,12 @@ may be closed before the data is actually sent. - When log statements are executed in TriplePathResolver, the logger name reflects TriplePathResolver, not any other class +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M024/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M024/SRS.md index 86dcefc020b8e11fbd1adadc432134502192fcab..b63c18edf027d3d3ccf2b856daea22596fd22406 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M024/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M024/SRS.md @@ -63,6 +63,12 @@ This milestone addresses configuration handling issues in Apache Dubbo, focusing - `ReferenceBeanManager.getBeanNamesByKey()` must return `new CopyOnWriteArrayList<>()` as default when key not found (instead of `Collections.EMPTY_LIST`) +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M025/SRS.md b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M025/SRS.md index 5b15006418e4fb954299487ae8368c7f446cdaf6..920c01f860c81e9865fca68f324352a3472c0138 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M025/SRS.md +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/srs/M025/SRS.md @@ -177,6 +177,12 @@ Investigation shows dubbo-test-check is declared but unused in many plugin modul - No test functionality should be affected by the dependency removal +--- + +## Repository-wide Formatting Contract + +Before creating the milestone completion tag, format every Java source change retained in the cumulative working tree—including changes from earlier milestones—with the repository's Spotless configuration. Run `mvn -o spotless:apply -Dspotless.check.skip=false` from the repository root, then require `mvn -o spotless:check -Dspotless.check.skip=false` to pass; do not bypass this check. + --- # Environment Dependency Changes (relative to Base Env) diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M001.2/M001.2_filter_list.json b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M001.2/M001.2_filter_list.json index 77edf7689e20cb80f3caf875f468c8a187e90221..71866a041b030dfe21fb7cb7a9f13248c4dbb34b 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M001.2/M001.2_filter_list.json +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M001.2/M001.2_filter_list.json @@ -29,13 +29,9 @@ "dubbo-rpc/dubbo-rpc-triple::org.apache.dubbo.rpc.protocol.tri.rest.support.basic.RestProtocolTest::bean argument test [path: /buy2, body: [book:org.apache.dubbo.rpc.protocol.tri.rest.service.Book@2c8b8de0, count:2], output: Dubbo, #3]" ], "invalid_none_to_pass": [ - "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkArtifacts", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboAllDependencies", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboAllNettyShade", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboAllShade", - "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboBom", - "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboDependenciesAll", - "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkSpiFiles", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboTransform" ], "invalid_pass_to_pass": [ diff --git a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M006/M006_filter_list.json b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M006/M006_filter_list.json index c3786484c9e4d7b7f09cd0e8def61b8842c8050a..77c1b7ec9f4acf28b52e6099612471b43bfd59bd 100755 --- a/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M006/M006_filter_list.json +++ b/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6/test_results/M006/M006_filter_list.json @@ -6,7 +6,8 @@ "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboAllNettyShade", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboAllShade", "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboBom", - "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboDependenciesAll" + "dubbo-test/dubbo-test-modules::org.apache.dubbo.dependency.FileTest::checkDubboDependenciesAll", + "dubbo-remoting/dubbo-remoting-netty::org.apache.dubbo.remoting.transport.netty.NettyClientTest::testClientClose" ], "invalid_none_to_pass": [ "dubbo-rpc/dubbo-rpc-triple::org.apache.dubbo.rpc.protocol.tri.rest.support.basic.RestProtocolTest::bean argument test [path: /buy, body: [org.apache.dubbo.rpc.protocol.tri.rest.service.Book@cbf1997], output: Dubbo, #1]", diff --git a/config/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6.yaml b/config/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6.yaml index 02cfe0562236283fb1688f36d140175391acb641..6cbd95ae2052d9f2cf6ef5c61470a6a71ace8236 100644 --- a/config/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6.yaml +++ b/config/apache_dubbo_dubbo-3.3.3_dubbo-3.3.6.yaml @@ -40,3 +40,46 @@ exclude: - "**/target/**" main_branch: "3.3" + +# Compile the complete Maven test source tree before grading. This activates +# evaluator.py's END -> START product-base fallback; END tests remain the +# authoritative test universe in either branch. +build_command: >- + mvn test-compile -DskipTests -Pskip-spotless -Dcheckstyle.skip=true + -Drat.skip=true -Dmaven.javadoc.skip=true -Dlicense.skip=true + +# START fallback keeps END-owned tests, but the broad discovery pattern +# `dubbo-demo/**` must not make every demo production source evaluator-owned. +# Pure tests and the dedicated dubbo-test harness remain authoritative; any +# END-changed demo src/main fixture must be named explicitly or evaluation +# fails closed instead of silently constructing a hybrid tree. +evaluation_fallback_test_graft: + mode: scoped + authoritative_patterns: + - "**/src/test/**" + - "**/test/**" + - "**/*Test.java" + - "**/*Tests.java" + - "**/*IT.java" + - "**/*TestCase.java" + - "**/*Test.groovy" + - "**/*Spec.groovy" + - "dubbo-test/**" + fixture_paths: + M003.1: + - "dubbo-demo/dubbo-demo-spring-boot-idl/dubbo-demo-spring-boot-idl-provider/src/main/proto/message.proto" + fail_closed_unlisted_patterns: + - "dubbo-demo/**/src/main/**" + +# Benchmark-owned Maven reactor closure. The evaluator hashes and records this +# script in evaluation_result.json and fails closed on errors. +evaluation_post_snapshot_script: "dockerfiles/evaluation_post_snapshot.sh" + +# M025's legacy image hook replaces the entire dependency BOM with a prepared +# base copy. That wholesale replacement is not a separable environment delta, +# so retain the exact agent snapshot for this one manifest. The evaluator +# validates that the path is an upsert in the hash-bound snapshot and records +# the exception in evaluation_result.json. +evaluation_manifest_agent_authoritative: + M025: + - "dubbo-dependencies-bom/pom.xml" diff --git a/config/nushell_nushell_0.106.0_0.108.0.yaml b/config/nushell_nushell_0.106.0_0.108.0.yaml index 5f166f9fdb249b7657ec8d3aeb061428758f6033..2ac40706028dc918ad822fc89708f46b9f047204 100644 --- a/config/nushell_nushell_0.106.0_0.108.0.yaml +++ b/config/nushell_nushell_0.106.0_0.108.0.yaml @@ -30,6 +30,20 @@ test_framework: cargo base_image_name: nushell_nushell_0.106.0_0.108.0/base:latest build_command: cargo build --profile ci --workspace --exclude nu_plugin_* +# These prepared milestone images rewrite the root Cargo dependency graph in +# ways that are not a separable environment-only delta. Keep the submitted +# Cargo manifest and lockfile as one exact dependency state instead of +# constructing a mixed graph with a line-oriented three-way merge. Entries +# are conditional: an untouched path is a no-op, and every applied exception +# is recorded in evaluation_result.json. +evaluation_manifest_agent_authoritative: + milestone_core_development.1: + - "Cargo.toml" + - "Cargo.lock" + milestone_G02_a647707: + - "Cargo.toml" + - "Cargo.lock" + # Struct field compatibility fixes # When agent code doesn't have certain fields, but GT test code references them, # we need to remove those references to avoid E0560 compilation errors. diff --git a/config/zeromicro_go-zero_v1.6.0_v1.9.3.yaml b/config/zeromicro_go-zero_v1.6.0_v1.9.3.yaml index 26b29f1a6a8c7e9d4e97c20c53839df10c071a02..d82b2918ce622c526a1ffcf590f6b183015f7a1a 100644 --- a/config/zeromicro_go-zero_v1.6.0_v1.9.3.yaml +++ b/config/zeromicro_go-zero_v1.6.0_v1.9.3.yaml @@ -16,6 +16,17 @@ main_branch: master base_image_name: zeromicro_go-zero_v1.6.0_v1.9.3/base:latest build_command: go build -v ./... +# Preserve the agent's exact Go module graph and evaluate it against the +# captured offline cache. Compatibility scoring for partial package reports +# is controlled separately by build_failure_fail_closed. +evaluation_go_module_closure: true +evaluation_go_module_dirs: +- . + # Test framework configuration for test ID normalization # go_test: Enables normalization of random subtest IDs (e.g., stringx.Rand(), stringx.RandId()) test_framework: go_test + +# Evaluator-owned post-snapshot hook (legacy-snapshot go.mod backfill for +# grafted END tests; no-op for fresh snapshots). See the script header. +evaluation_post_snapshot_script: "dockerfiles/evaluation_post_snapshot.sh" diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/Dockerfile.v1.0 b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/Dockerfile.v1.0 new file mode 100644 index 0000000000000000000000000000000000000000..971b87200f8ad0cef1fe2b12149321b99e583ad8 --- /dev/null +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/Dockerfile.v1.0 @@ -0,0 +1,33 @@ +# v1.0 incremental patch — feature_enhancements (F-2a follow-up) +# +# Pathology: the playwright e2e mode needs the host Docker socket +# (testcontainers) AND runs a webServer on a hardcoded host port 8080 under +# --network host. The e2e evaluator historically never mounted the socket +# (root cause of the ~81x27 poisoned failures), and once it does, the fixed +# port makes evaluations mutually exclusive per host and dead on any host +# where 8080 is already taken. +# +# Fix: install the eval-time hook (see apply_patches.sh) that makes the +# webServer command and baseURL honor SWE_MILESTONE_EVAL_PORT, which the +# evaluator injects per evaluation together with the socket mount. Image +# testbed trees are untouched; the hook edits only the eval-time working +# tree, and the port number is not part of tested semantics. +# +# Build: docker build -f Dockerfile.v1.0 \ +# -t swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__feature_enhancements:v1.0 . +# (previous content preserved as :v0.9 before retag) +FROM swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__feature_enhancements:v0.9 + +COPY apply_patches.sh /usr/local/bin/apply_patches.sh +RUN chmod +x /usr/local/bin/apply_patches.sh && \ + cd /testbed && \ + grep -q 'npx serve -p 8080 -L ./webapp' playwright.config.ts && \ + echo "VERIFY OK: hook installed; config still pristine in image" + +# The shipped image carries only chromium, but classification scored +# [Firefox]/[WebKit] entries — the classification environment had all three +# browsers. Install the missing two so evaluation can reproduce the oracle +# environment (fast-failing launches were being scored as test failures). +RUN cd /testbed && npx playwright install --with-deps firefox webkit && \ + ls /root/.cache/ms-playwright/ | grep -E "firefox|webkit" && \ + echo "VERIFY OK: firefox+webkit installed" diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/apply_patches.sh b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/apply_patches.sh new file mode 100644 index 0000000000000000000000000000000000000000..4ba679aa935d0f6cd1bd5c46aadd0217cdfe6007 --- /dev/null +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/apply_patches.sh @@ -0,0 +1,24 @@ +#!/bin/bash +# [ENV-PATCH v1.0] per-eval port isolation for the playwright e2e webServer. +# +# The evaluator hook runs this inside /testbed after the snapshot overlay. +# playwright.config.ts hardcodes `npx serve -p 8080` (CI branch) and defaults +# baseURL to localhost:8080 — a fixed host port under --network host, so a +# busy 8080 (or any concurrent eval) deadlocks the webServer wait. Rewrite +# both spots to honor SWE_MILESTONE_EVAL_PORT (injected per evaluation by the +# evaluator alongside the docker socket). Guarded + idempotent; no-op when +# the env var is absent at test time (falls back to 8080); oracle files in +# the image are untouched — this edits only the eval-time working tree. +set -u +cd /testbed 2>/dev/null || exit 0 +f=playwright.config.ts +[ -f "$f" ] || exit 0 +if grep -q 'npx serve -p 8080 -L ./webapp' "$f"; then + sed -i 's|npx serve -p 8080 -L ./webapp|npx serve -p ${SWE_MILESTONE_EVAL_PORT:-8080} -L ./webapp|' "$f" + echo "[apply_patches v1.0] webServer port now honors SWE_MILESTONE_EVAL_PORT" +fi +if grep -q 'process.env\["BASE_URL"\] ?? "http://localhost:8080"' "$f"; then + sed -i 's|process.env\["BASE_URL"\] ?? "http://localhost:8080"|process.env["BASE_URL"] ?? `http://localhost:${process.env.SWE_MILESTONE_EVAL_PORT ?? "8080"}`|' "$f" + echo "[apply_patches v1.0] baseURL default now honors SWE_MILESTONE_EVAL_PORT" +fi +exit 0 diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/test_config.json b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/test_config.json index 5c3e5e6ece9ec5b21a7d84de89c1f7dcf15a4fce..58851886aef6676c6390600831b8f97c88553f96 100755 --- a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/test_config.json +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/feature_enhancements/test_config.json @@ -1,17 +1,24 @@ [ { "name": "default", - "test_states": ["start", "end"], + "test_states": [ + "start", + "end" + ], "test_cmd": "yarn test --json --outputFile=/output/{output_file} --testTimeout={timeout}000 --maxWorkers={workers}", "framework": "jest", "description": "Normal unit tests" }, { "name": "e2e", - "test_states": ["start", "end"], + "test_states": [ + "start", + "end" + ], "test_cmd": "cd /testbed && yarn build && echo '{{}}' > webapp/config.json && CI=true npx playwright test playwright/e2e/right-panel/ --reporter=json --timeout=120000 > /output/{output_file}", "framework": "playwright", "description": "End-to-end tests using Playwright with testcontainers (2min timeout for container setup)", - "requires_docker_socket": true + "requires_docker_socket": true, + "run_timeout_seconds": 14400 } -] +] \ No newline at end of file diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/Dockerfile.v1.0 b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/Dockerfile.v1.0 new file mode 100644 index 0000000000000000000000000000000000000000..c8597957ce06f1ce8e71b48f4e7b5ed1362d3268 --- /dev/null +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/Dockerfile.v1.0 @@ -0,0 +1,33 @@ +# v1.0 incremental patch — maintenance_ui_ux (F-2a follow-up) +# +# Pathology: the playwright e2e mode needs the host Docker socket +# (testcontainers) AND runs a webServer on a hardcoded host port 8080 under +# --network host. The e2e evaluator historically never mounted the socket +# (root cause of the ~81x27 poisoned failures), and once it does, the fixed +# port makes evaluations mutually exclusive per host and dead on any host +# where 8080 is already taken. +# +# Fix: install the eval-time hook (see apply_patches.sh) that makes the +# webServer command and baseURL honor SWE_MILESTONE_EVAL_PORT, which the +# evaluator injects per evaluation together with the socket mount. Image +# testbed trees are untouched; the hook edits only the eval-time working +# tree, and the port number is not part of tested semantics. +# +# Build: docker build -f Dockerfile.v1.0 \ +# -t swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__maintenance_ui_ux:v1.0 . +# (previous content preserved as :v0.9 before retag) +FROM swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__maintenance_ui_ux:v0.9 + +COPY apply_patches.sh /usr/local/bin/apply_patches.sh +RUN chmod +x /usr/local/bin/apply_patches.sh && \ + cd /testbed && \ + grep -q 'npx serve -p 8080 -L ./webapp' playwright.config.ts && \ + echo "VERIFY OK: hook installed; config still pristine in image" + +# The shipped image carries only chromium, but classification scored +# [Firefox]/[WebKit] entries — the classification environment had all three +# browsers. Install the missing two so evaluation can reproduce the oracle +# environment (fast-failing launches were being scored as test failures). +RUN cd /testbed && npx playwright install --with-deps firefox webkit && \ + ls /root/.cache/ms-playwright/ | grep -E "firefox|webkit" && \ + echo "VERIFY OK: firefox+webkit installed" diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/apply_patches.sh b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/apply_patches.sh new file mode 100644 index 0000000000000000000000000000000000000000..4ba679aa935d0f6cd1bd5c46aadd0217cdfe6007 --- /dev/null +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/apply_patches.sh @@ -0,0 +1,24 @@ +#!/bin/bash +# [ENV-PATCH v1.0] per-eval port isolation for the playwright e2e webServer. +# +# The evaluator hook runs this inside /testbed after the snapshot overlay. +# playwright.config.ts hardcodes `npx serve -p 8080` (CI branch) and defaults +# baseURL to localhost:8080 — a fixed host port under --network host, so a +# busy 8080 (or any concurrent eval) deadlocks the webServer wait. Rewrite +# both spots to honor SWE_MILESTONE_EVAL_PORT (injected per evaluation by the +# evaluator alongside the docker socket). Guarded + idempotent; no-op when +# the env var is absent at test time (falls back to 8080); oracle files in +# the image are untouched — this edits only the eval-time working tree. +set -u +cd /testbed 2>/dev/null || exit 0 +f=playwright.config.ts +[ -f "$f" ] || exit 0 +if grep -q 'npx serve -p 8080 -L ./webapp' "$f"; then + sed -i 's|npx serve -p 8080 -L ./webapp|npx serve -p ${SWE_MILESTONE_EVAL_PORT:-8080} -L ./webapp|' "$f" + echo "[apply_patches v1.0] webServer port now honors SWE_MILESTONE_EVAL_PORT" +fi +if grep -q 'process.env\["BASE_URL"\] ?? "http://localhost:8080"' "$f"; then + sed -i 's|process.env\["BASE_URL"\] ?? "http://localhost:8080"|process.env["BASE_URL"] ?? `http://localhost:${process.env.SWE_MILESTONE_EVAL_PORT ?? "8080"}`|' "$f" + echo "[apply_patches v1.0] baseURL default now honors SWE_MILESTONE_EVAL_PORT" +fi +exit 0 diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/test_config.json b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/test_config.json index 5c3e5e6ece9ec5b21a7d84de89c1f7dcf15a4fce..58851886aef6676c6390600831b8f97c88553f96 100755 --- a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/test_config.json +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/maintenance_ui_ux/test_config.json @@ -1,17 +1,24 @@ [ { "name": "default", - "test_states": ["start", "end"], + "test_states": [ + "start", + "end" + ], "test_cmd": "yarn test --json --outputFile=/output/{output_file} --testTimeout={timeout}000 --maxWorkers={workers}", "framework": "jest", "description": "Normal unit tests" }, { "name": "e2e", - "test_states": ["start", "end"], + "test_states": [ + "start", + "end" + ], "test_cmd": "cd /testbed && yarn build && echo '{{}}' > webapp/config.json && CI=true npx playwright test playwright/e2e/right-panel/ --reporter=json --timeout=120000 > /output/{output_file}", "framework": "playwright", "description": "End-to-end tests using Playwright with testcontainers (2min timeout for container setup)", - "requires_docker_socket": true + "requires_docker_socket": true, + "run_timeout_seconds": 14400 } -] +] \ No newline at end of file diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/Dockerfile b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/Dockerfile old mode 100755 new mode 100644 index 2eed1700f5c6d6c212726dabef09aa2741910c6d..6534e77e3759827267d30db2bcd27a52cbb2b120 --- a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/Dockerfile +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/Dockerfile @@ -1,53 +1,43 @@ -# Build on pre-configured base image -FROM element-hq_element-web_v1.11.95_v1.11.97/base:latest +# syntax=docker/dockerfile:1.4 -# Set umask to ensure files created in container are world-writable -# This prevents permission issues when test results are written to mounted volumes -RUN echo 'umask 000' >> /etc/bash.bashrc && \ - echo '#!/bin/bash\numask 000\nexec "$@"' > /entrypoint.sh && \ - chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] -CMD ["bash"] +# Formal v1.0 repair overlay for milestone_seed_599112e_1. +# +# v0.93 is the frozen pre-release parent: it already contains Chromium, +# serve@14.2.5, and an ignored /testbed/config.json for Playwright web-server +# readiness. The repository-wide base-offline image owns the union Yarn cache. +ARG SOURCE_IMAGE=swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__milestone_seed_599112e_1:v0.93 +ARG CLOSURE_IMAGE=swe-milestone/element-hq_element-web_v1.11.95_v1.11.97__base-offline:v1.0 +ARG BROWSER_IMAGE=evoclaw-immutable/milestone-parent:sha256-6c1d8b4cbcf21f26b762d7037605b3a478d6df3d6f5aa889037682b18328c0dc -# Remove the original /testbed from base image and copy local testbed -# NOTE: The testbed already contains milestone tags - DO NOT create them with `git tag` -# Preserve node_modules and test infrastructure from base image -RUN mv /testbed/node_modules /tmp/node_modules_backup && \ - cp -r /testbed/test /tmp/test_backup -RUN rm -rf /testbed -COPY . /testbed/ -RUN mv /tmp/node_modules_backup /testbed/node_modules +FROM ${CLOSURE_IMAGE} AS closure +FROM ${BROWSER_IMAGE} AS browsers +FROM ${SOURCE_IMAGE} -# Install Playwright browsers for e2e tests (do this early while we still have the base test/ directory) -RUN cd /testbed && npx playwright install chromium --with-deps +# END declares @element-hq/element-web-playwright-common@^1.1.5, but the +# original milestone image retained START's node_modules and therefore could +# not collect any Playwright suites. Materialize END's frozen lockfile from the +# sealed union cache, validate collection, then return the released image to +# the START tag expected by both the agent runner and baseline runner. +RUN --mount=type=bind,from=closure,source=/usr/local/share/.cache/yarn/v6,target=/usr/local/share/.cache/yarn/v6,readonly \ + cd /testbed && \ + git checkout -q -f milestone-milestone_seed_599112e_1-end && \ + yarn install --offline --frozen-lockfile && \ + node -e "const p=require('@element-hq/element-web-playwright-common/package.json'); if(p.version!=='1.1.5') process.exit(1)" && \ + env -u CI npx playwright test --list --project=Chrome > /tmp/playwright-list.txt && \ + grep -Eq '^Total: [1-9][0-9]* tests in [1-9][0-9]* files$' /tmp/playwright-list.txt && \ + git checkout -q -f milestone-milestone_seed_599112e_1-start && \ + test -s /testbed/config.json && \ + command -v serve >/dev/null && \ + rm -f /tmp/playwright-list.txt -# Checkout to END state (all features available) -# Use -f to force checkout, discarding any local changes from COPY -RUN cd /testbed && git checkout -f milestone-milestone_seed_599112e_1-end +# END's frozen lockfile resolves Playwright 1.51.1 / Chromium revision 1161, +# while the original milestone image only carried revision 1155. Reuse the +# already-validated browser payload from an immutable image in this same repo +# release line; no browser download is performed during this build. +COPY --from=browsers /root/.cache/ms-playwright/chromium-1161 /root/.cache/ms-playwright/chromium-1161 +RUN test -x /root/.cache/ms-playwright/chromium-1161/chrome-linux/chrome -# Re-apply test infrastructure from base image backup (test-utils, setup, etc.) -# This ensures jest-matrix-react, ResizeObserver mocks, and other test infrastructure are present -RUN mkdir -p /testbed/test/test-utils /testbed/test/setup /testbed/test/unit-tests /testbed/test/@types && \ - cp -r /tmp/test_backup/test-utils/* /testbed/test/test-utils/ 2>/dev/null || true && \ - cp -r /tmp/test_backup/setup/* /testbed/test/setup/ 2>/dev/null || true && \ - cp /tmp/test_backup/setupTests.ts /testbed/test/ 2>/dev/null || true && \ - cp /tmp/test_backup/globalSetup.ts /testbed/test/ 2>/dev/null || true && \ - cp /tmp/test_backup/unit-tests/TestSdkContext.ts /testbed/test/unit-tests/ 2>/dev/null || true && \ - cp /tmp/test_backup/@types/* /testbed/test/@types/ 2>/dev/null || true && \ - mkdir -p /testbed/test/unit-tests/stores/room-list-v3/skip-list && \ - cp -r /tmp/test_backup/unit-tests/stores/room-list-v3/skip-list/* /testbed/test/unit-tests/stores/room-list-v3/skip-list/ 2>/dev/null || true - -# Set default git state to START -RUN cd /testbed && git checkout -f milestone-milestone_seed_599112e_1-start - -# Re-apply test infrastructure from base image backup for start state -RUN mkdir -p /testbed/test/test-utils /testbed/test/setup /testbed/test/unit-tests /testbed/test/@types && \ - cp -r /tmp/test_backup/test-utils/* /testbed/test/test-utils/ 2>/dev/null || true && \ - cp -r /tmp/test_backup/setup/* /testbed/test/setup/ 2>/dev/null || true && \ - cp /tmp/test_backup/setupTests.ts /testbed/test/ 2>/dev/null || true && \ - cp /tmp/test_backup/globalSetup.ts /testbed/test/ 2>/dev/null || true && \ - cp /tmp/test_backup/unit-tests/TestSdkContext.ts /testbed/test/unit-tests/ 2>/dev/null || true && \ - cp /tmp/test_backup/@types/* /testbed/test/@types/ 2>/dev/null || true && \ - mkdir -p /testbed/test/unit-tests/stores/room-list-v3/skip-list && \ - cp -r /tmp/test_backup/unit-tests/stores/room-list-v3/skip-list/* /testbed/test/unit-tests/stores/room-list-v3/skip-list/ 2>/dev/null || true && \ - rm -rf /tmp/test_backup +# Evaluator and baseline runs use host networking for testcontainers. Patch the +# upstream fixed port 8080 to the unique per-run port supplied by the harness. +COPY apply_patches.sh /usr/local/bin/apply_patches.sh +RUN chmod 0755 /usr/local/bin/apply_patches.sh diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/apply_patches.sh b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/apply_patches.sh new file mode 100644 index 0000000000000000000000000000000000000000..58f037782950b91fb313858a91ef949522cc6638 --- /dev/null +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/apply_patches.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# [ENV-PATCH v1.0] Per-run port isolation for the Playwright web server. +# +# Both the evaluator and the milestone baseline runner execute this hook after +# switching Git state. It changes environment wiring only; no oracle/test files +# are modified. The rewrite is guarded and idempotent. +set -u +cd /testbed 2>/dev/null || exit 0 +f=playwright.config.ts +[ -f "$f" ] || exit 0 +if grep -q 'npx serve -p 8080 -L ./webapp' "$f"; then + sed -i 's|npx serve -p 8080 -L ./webapp|npx serve -p ${SWE_MILESTONE_EVAL_PORT:-8080} -L ./webapp|' "$f" + echo "[apply_patches v1.0] webServer port now honors SWE_MILESTONE_EVAL_PORT" +fi +if grep -q 'process.env\["BASE_URL"\] ?? "http://localhost:8080"' "$f"; then + sed -i 's|process.env\["BASE_URL"\] ?? "http://localhost:8080"|process.env["BASE_URL"] ?? `http://localhost:${process.env.SWE_MILESTONE_EVAL_PORT ?? "8080"}`|' "$f" + echo "[apply_patches v1.0] baseURL default now honors SWE_MILESTONE_EVAL_PORT" +fi +exit 0 diff --git a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/test_config.json b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/test_config.json old mode 100755 new mode 100644 index f331e1040202bdd187f6f1462098de95eb8bcac8..d704a4e0adc595278117fc9126cced867109e3f9 --- a/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/test_config.json +++ b/element-hq_element-web_v1.11.95_v1.11.97/dockerfiles/milestone_seed_599112e_1/test_config.json @@ -1,16 +1,24 @@ [ { "name": "default", - "test_states": ["start", "end"], + "test_states": [ + "start", + "end" + ], "test_cmd": "cd /testbed && node_modules/.bin/jest --json --outputFile=/output/{output_file} --testTimeout={timeout}000 --maxWorkers={workers}", "framework": "jest", "description": "Normal Jest unit tests" }, { "name": "e2e", - "test_states": ["start", "end"], - "test_cmd": "cd /testbed && CI=true yarn build && PLAYWRIGHT_JSON_OUTPUT_NAME=/output/{output_file} CI=true npx playwright test --reporter=json --project=Chrome --timeout={timeout}000 --workers={workers}", + "test_states": [ + "start", + "end" + ], + "test_cmd": "cd /testbed && if [ -z \"${{SWE_MILESTONE_EVAL_PORT:-}}\" ]; then SWE_MILESTONE_EVAL_PORT=$(python3 -c 'import socket; s=socket.socket(); s.bind((\"127.0.0.1\",0)); print(s.getsockname()[1]); s.close()'); export SWE_MILESTONE_EVAL_PORT; fi && CI=true yarn build && echo '{{}}' > webapp/config.json && PLAYWRIGHT_JSON_OUTPUT_NAME=/output/{output_file} CI=true npx playwright test playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts playwright/e2e/settings/quick-settings-menu.spec.ts playwright/e2e/spaces/spaces.spec.ts --reporter=json --project=Chrome --timeout=120000 --workers={workers}", "framework": "playwright", - "description": "Playwright e2e tests (Chrome only)" + "description": "Milestone-scoped Playwright coverage for checkbox interactions and changed snapshots", + "requires_docker_socket": true, + "run_timeout_seconds": 14400 } ] diff --git a/element-hq_element-web_v1.11.95_v1.11.97/test_results/milestone_seed_599112e_1/milestone_seed_599112e_1_classification.json b/element-hq_element-web_v1.11.95_v1.11.97/test_results/milestone_seed_599112e_1/milestone_seed_599112e_1_classification.json old mode 100755 new mode 100644 index 2bbad590701adcdeb6554286b985022236ece3a2..f52f5ccfb34ca0646c0a4f3d06ba2c1d5bba5895 --- a/element-hq_element-web_v1.11.95_v1.11.97/test_results/milestone_seed_599112e_1/milestone_seed_599112e_1_classification.json +++ b/element-hq_element-web_v1.11.95_v1.11.97/test_results/milestone_seed_599112e_1/milestone_seed_599112e_1_classification.json @@ -1,10 +1,10 @@ { "summary": { - "pass_to_pass": 5209, + "pass_to_pass": 5213, "pass_to_fail": 0, "pass_to_skipped": 0, - "fail_to_pass": 15, - "fail_to_fail": 67, + "fail_to_pass": 17, + "fail_to_fail": 75, "fail_to_skipped": 0, "skipped_to_pass": 0, "skipped_to_fail": 0, @@ -17,10685 +17,10713 @@ "skipped_to_none": 0, "new_tests": 0, "removed_tests": 0, - "total_before": 5319, - "total_after": 5319, + "total_before": 5333, + "total_after": 5333, "flaky_total": 1, - "flaky_in_start": 1, + "flaky_in_start": 0, "flaky_in_end": 1 }, "classification": { "pass_to_pass": [ - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until end of timeline is reached while within time limit", - "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an existing DM > should update the account data accordingly", - "test/unit-tests/stores/AutoRageshakeStore-test.ts::AutoRageshakeStore > when the initial sync completed > and an undecryptable event occurs > should send a to-device message", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions between other events", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders preview space toggle", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for one of them, it should return false", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display an error message when the room is unreachable via the roomId", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should not parse @foo without domain", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should download on click", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render PlainTextComposer when isRichTextEnabled is at false", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify MXIDs", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns false for an event with voice content", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users in the user directory", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 12 hr time format", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the sticker picker", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should throw error if server fails with something other than UIA", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions at app start have been dismissed", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - AppleTV11,1/11.1", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join enabled > does render the RoomKnocksBar", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > should render login page", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user should return the profile from the API and cache it", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid passphrase", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles master switch correctly", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is not the latest beacon for a user", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when new version of message's push actions have a highlight tweak", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > updates map style when style url is truthy", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > prompts user to set up recovery if backups are enabled but recovery isn't", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is over a week ago", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should only accept valid percentage", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > @room pill", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns light when login flag is set", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > toggles out of editing mode when device name is saved successfully", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand normal notifications", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove in middle of string", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > renders no devices expanded by default", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up for an audio message", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is enabled > passes the flag in to getVisibleRooms", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is same day as current day", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should proxy remove to delete and return it", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > destroys recording for a room if it exists in state", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > updates synced rules when they exist for user", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > global mute", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in start of a second non-editable part, with another one before it", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > maps geolocation position error and calls error handler", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > invokes room activity listeners when the viewed room changes", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return false for a redacted event", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > and a new event appears > should emit the new event", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders invalid date separator correctly", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM LocalRoom > should render the expected intro", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > getUserIdsFromCompletions() should map completions to user id's", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes square brackets", + "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking the dial button calls the correct function", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver doesn't offer any supported login flows", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > and some 3rd-party members have a profile > should resolve the profiles", + "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > doesn't error when viewing redacted encrypted messages", + "test/unit-tests/createRoom-test.ts::createRoom > doesn't create calls in non-video-rooms", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when user is has invite rights for space", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is expired but live property is true", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display a connection error when getting login flows fails", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and a room is viewed > and the quick settings are open > should render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time is up > should not call stop", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if installed WPA", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > warns when trying to make an encrypted room public", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after component is loaded", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/foo_bar:server.uk", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > refreshes devices after verifying other device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a mention without a href closes the autocomplete but does not insert a mention", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if all users have a device", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Exact match in recently used takes the lead", + "test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx::JumpToDatePicker > renders the date picker correctly", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_cancelled", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not display a redacted edit", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Even", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > OIDC Aware > should resolve account management endpoint", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should allow overriding individual fields of sub-objects", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns success if notification level is Notification", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > renders stop button", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are granted", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse loud keyword notifications", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if a room exists > should return the room and dispatch a view room event", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders inactive devices section when user has inactive devices", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > sets position on click event", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestCreation() > sorts beacons by descending creation time", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > should link to predecessor room via MSC3946 if enabled", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client with a tokenRefreshFunction", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should not prompt the user if the requested key is not the default", + "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return true for 1-1 rooms when widget_build_url_ignore_dm is unset", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing phone number", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders close button correctly when encryption panel with a pending verification request", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should handle no email addresses", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should allow rearranging via drag and drop", "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should add link to next and previous file", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > destroys non-persisted right panel widget on room change", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should capture permalink clicks", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Negative latitude", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should show complete security screen when user has cross signing setup", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > cannot add more than three widgets to top container", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the approve button if the power level is insufficient", - "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for redacted events", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc2516.voice content", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users can see encrypted messages", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message and duration if the call was ended", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room swapped", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames current session", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > cancelUpload > should cancel in-flight upload", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should react to value and disabled prop changes", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button click", "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > removes spinner when device fetch fails", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons in reverse order when room can previewed", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct labels for banned and unbanned members", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with the expected arguments when text node is valid command", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room with read thread messages", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with multiple winners", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns live beacons when user has live beacons", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 144 hours ago", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should show space invites at the top of the space panel [Chrome]", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon is not live", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > uses shared as default history visibility when no state event found", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > deletes devices and calls onFinished when interactive auth is not required", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom out on zoom out click", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a regular notification in the TAC", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > does not render a poll tile when end event is invalid", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return J-D in narrow mode", + "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should batch promises into groups of a given size", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns an empty string if we are not handling a user, room or at-room type", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time left > should not call stop", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is not known", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered doesn't incorrectly override setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in home space", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the extensible event text when fetching the start event fails", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when general config rejects", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for redacted event", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should leave room and dispatch after leave action", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns map of users to rooms with 2 members", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for LocalRoom", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should attempt token login", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a User should start a DM", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when calls to client.getRoom and room.getEventReadUpTo are non-null, shows read receipt button", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for regular InputEvent", + "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > should show poster for encrypted media before downloading it", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should return usage if no args", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onChange handler", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases with no server component", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > should replace parameters in widget url template", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects muted", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows an out-of-sync toast when one of the secrets is missing", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds no calls", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from a selected room", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and feature_dynamic_room_predecessors is enabled > should pass the setting to findPredecessor", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without content body property", + "test/unit-tests/editor/parts-test.ts::editor/parts > should not explode on room pills for unknown rooms", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button emojis correctly", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should do post-logout cleanup", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should start OIDC login flow as registration on button click", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go straight to logged in view when user is not in any encrypted rooms", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 6 days ago, but less than 144h", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for GB", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should render", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse regular keyword notifications", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > catches error and logs when saving client information fails", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > spoilers get injected properly into the DOM", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status cancelled", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (without plain text around)", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to a message in the same room with the label \u00bbMessage from Member\u00ab", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > downloadFile > should download a file and return the blob", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_already_exists", + "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 24 hour mode", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow pasting the same user multiple times", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not render space header", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows scores if the poll is undisclosed but ended", + "test/unit-tests/models/Call-test.ts::ElementCall > get > does not pass analyticsID if `pseudonymousAnalyticsOptIn` set to false", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > should render as expected for a DM room with a single third-party invite", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > does not re-sort on possible mute change when room did not change effective mutedness", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores trailing `:`", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > handles saving beacon event id when local storage has bad value", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for the given relation", "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > font show ask to join if feature is enabled but cannot invite", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should prompt user if upload failed with UIA", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should untag a room low priority", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction with space", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally true", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM LocalRoom > should render the expected intro", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > insert text into empty document", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no past polls message when there are no past polls in the room", - "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > renders filter container when enabled by UIComponent customisations", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > clamps the interpolant", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return properties which were changed, added, or removed", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation permissions are not granted", - "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders map correctly", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should union 3 arrays with deduplication", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbStart DM anyway\u00ab > should start the DM", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > mention button fires ComposerInsert Action", - "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > reply with voice recording", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo position unavailable error correctly", - "test/unit-tests/editor/position-test.ts::editor/position > move forwards crossing to other part", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render world readable option when room is encrypted", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly orders sequences of transitions by the order of their first event", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for around pills", + "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > when a dialog is opened, the release announcement should not be displayed", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns a single empty div if room.getMember is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in an empty composer", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist access token when idb is not available", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers explicitly denied by ACLs", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load without initialFocusedBeacon", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends plaintext messages correctly", + "test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx:: > renders tab", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 0", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > invokes room activity listeners when the viewed room changes", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should return null", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand normal notifications", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room member", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > does nothing on non space/enter key presses when no onKeydown/onKeyUp handlers provided", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isNew should return true", "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound phone number", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when caret is not at the end of the text", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > append text to existing document", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :mailbox", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > renders expanded devices with device details", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > renders url previews correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect localstorage settings", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should ignore reply_to_event for Thread panels", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #localhost:foo.com", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > updates when new polls are added to the room", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is enabled > passes through the dynamic room precessors flag", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:bar.com", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the verified icon", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery panel when key storage is enabled", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > can have different appearance to its heading level", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with one winning answer", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption verification panel with pending verification", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button custom image reactions correctly", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an ImageBody", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no e2ee well known", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > calls retry when retry button pressed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address and port", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly if its already formatted", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when a theme is selected", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOnlyKnownProfile should return undefined if the profile was not fetched", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should call onTokenLoginCompleted", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no room", - "test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx::LegacyCallViewButtons > should render the buttons", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should open idp in new tab on click", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when secret storage is being accessed", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at end of string", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with help tab selected", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a redacted beacon", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > enters qr code login section when show QR code button clicked", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration request fails", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > renders", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > properly handles replies", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > logs and resets device when update fails", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should create new matrix client with credentials", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale de-DE", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should be able to handle an empty result", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget as an account widget > updates viewed room", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp low numbers", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return undefined for a single target without a room", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > does nothing on non space/enter key presses when no onKeydown/onKeyUp handlers provided", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases with no candidate servers", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves immediately if the user is already a member", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added from A->B", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > notices", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns success if notification level is Notification", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbClose\u00ab > should not start the DM", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders avatar with specified alt text", - "test/unit-tests/WorkerManager-test.ts::WorkerManager > should support resolving out of order", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with unknown algorithm > should show the expected texts", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two members", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 0 (Unknown error)", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show server picker", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3600 to 1h 0m 0s left", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should recover from a server exception", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > records error when stopping beacon event fails to send", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error when beacons have stopping and location errors", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were unpinned", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is enabled > should render the developer tools option", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > asks for confirmation before deleting a backup", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple variable substitution and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is not the latest beacon for a user", + "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when animated", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should highlight words correctly", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show username field with autocaps disabled", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting all items should work", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > signs out of all other devices from other sessions context menu", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element additions", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include avatars", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from me", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > resets secret storage", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should disable Match system theme", - "test/unit-tests/utils/membership-test.ts::waitForMember > waits for the timeout if the room is known but the user is not", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should allow pasting of text values", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that All filter for ThreadPanelHeader properly renders Show: All threads", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendStickerContentToRoom > should forward the call to doMaybeLocalRoomAction", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should fall back to WebPlatform::setNotificationCount if no Navigator::setAppBadge", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is enabled", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should prompt ask to join", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not explicitly banned by ACLs", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > handles error when updating history visibility", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide experimental extension", - "test/unit-tests/components/views/elements/InfoTooltip-test.tsx::InfoTooltip > should show tooltip on hover", - "test/unit-tests/editor/range-test.ts::editor/range > range replace within a part", - "test/unit-tests/Notifier-test.ts::Notifier > _playAudioNotification > does not dispatch when notifications are silenced", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should scroll event into view when props.eventId changes", - "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time without hours", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with a single message previously pinned", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (https)", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > doesn't stop messaging when connecting", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for text content with an email address", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should work with empty queries", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with React function component and translates with fallback locale", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > should render the initial position", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Even", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders display name with a tooltip", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to the loudest synced rule value", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationsEnabled setting is truthy", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show context menu on widget row", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks connection state", - "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking the dial button calls the correct function", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send Legacy cryptoSDK superProperty correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when alt+Enter is pressed", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns devices older than 90 days as inactive", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 2", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders invalid date separator correctly", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using browser font size", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should not render when asked not to", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address for server name", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should send an event when clicked", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return false when no issuer is in session storage", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'minimise' should send the widget to the right", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > shows group call toast", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates ranges on an existing list based on the key if there's no other changes", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if the event is redacted", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders correctly when selected", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders disabled silenced button when call is forced to silent", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when passphrase is filled", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when there are none", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > hides the bar when someone else approves or denies the waiting person", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false when the event was sent by the current user", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state for legacy DontNotify action", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > invite", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should persist credentials", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no experimental extensions are provided by a registered module", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with same previous algorithm > should show the expected texts", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is not enabled > Passes the dynamic predecessor flag to getVisibleRooms", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.server_acl", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when ctrl+enter is pressed when ctrlEnterToSend is true on windows", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > does not add Twemoji font when disabled", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when current device is unverified", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with args", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns a single empty div if room.getMember is falsy", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a beacon that is not live", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > deletes backup after confirmation", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > generates correct mutations for a changed model", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit set in ForceRoomExportParameters is larger than 2000", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should match snapshot when empty", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends private read receipts", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without content body property", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should set the content type to MsgType.Emote when /me prefix is used", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should show the attachment button", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > should be navigable using arrow keys", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > adds relations for a .messages or .effects category command if there is a relation", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Room when user does not have permission to add rooms", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if bug_report_endpoint_url is falsey", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not show invalid terms", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns grey if a thread in the room has a normal notification", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event not sent by current user", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display the generic error message when the roomId doesnt match", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a room has unreads", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > closes sidebar on close button click", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with a custom title and default options", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no right space", - "test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx:: > should render", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div tags when enter is pressed then user types more when ctrlEnterToSend is true", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return a result", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with true if RoomState.newMember fires", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with appearance tab selected", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return the items in the cache", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes longer backticks in between text", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"Unable to decrypt message\"", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not allow device verification on session that do not support encryption", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string", - "test/unit-tests/components/views/auth/RegistrationToken-test.tsx::InteractiveAuthComponent > Should successfully complete a registration token flow", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/foo-bar:server.uk", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on logged in action", - "test/unit-tests/utils/pillify-test.tsx::pillify > should do nothing for empty element", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should not be enabled without config being set", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > updates when the trust status updates", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore is falsy", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (with plain text around)", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.org", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return false for LocalRoom", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for a beacon that is already not live", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the end of the timeline", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > displays poll history when tab clicked", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 1 and translates with fallback locale", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to subspace", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint to issuer when not configured", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by name", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 3", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for fr", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains an invalid geo_uri", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext even if escaped", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with autolinks are not touched at all and are still properly formatted", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should fall back to static config when well-known lookup fails", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is trusted, but device is not signed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > calls getCompletions when given a valid suggestion prop", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > does not render invite menu item when UIComponent customisations disable room invite", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > ignores terminated calls", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.to", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds the top answer among several votes", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description at first", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound email address", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added from A->B", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from experimental-extensions provided by a registered module", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should destroy pickle key", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > room pill", "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return S-S in narrow mode", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > should return JSONEventFactory for a no-op m.room.power_levels event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @_foonetic_xkcd:matrix.org", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last week", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sent", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if beta is disabled", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > creates and adds recording to state", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: Threads > should display the pinned message badge", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = true", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > rejects invite on secondary button click", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 1", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a heading", "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationBodyEnabled setting is truthy", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call ended cleanly", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev user mentions", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles with additional spaces coming off them", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > quote", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when some secrets are not in 4S", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > dispatches keybackup event when key backup is not enabled", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new phone number", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > usePassPhrase > should use dehydration when enabled", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for an event that becomes visible later", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for highlights", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold for join and leave", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should handle local echos correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace at-room mentions with `@room` in body", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > show account management link in expected format", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should default to name 'Attachment' if file doesn't have a name", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using fallback font size", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > does not meet room requirements if there are not enough rooms", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect crypto version", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept hyphens in name #foo-bar:server.com", - "test/unit-tests/components/views/right_panel/BaseCard-test.tsx:: > should close when clicking X button", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > updates live beacon ids when users own beacons were created on device", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display only the current user", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for normal message", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > failed to connect", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers explicitly denied by ACLs", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return true when an issuer is in session storage", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from SYNCING to RECONNECTING", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return null if the app has no avatar URL", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > userProfilesStore should raise an error without a client", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form without change server link when custom URLs disabled", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles user cancelling during reciprocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > mentions do not propagate", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick candidate servers based on user population", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a persistent app > should render", - "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should accept emoji strings into type=emoji", - "test/unit-tests/utils/export-test.tsx::export > numberOfMessages exceeds max", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > triggers a room update when room mutes have changed", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when user has no permission", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > catches errors when room is not found", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return the next feature when the next release announcement is called", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the room's avatar", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should close search results when edit is clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onSelect on checkbox click", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string with duplicate character", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the sticker picker", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji varitation replacement", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates live timeline when a timeline reset happens", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > allows overriding native context menus", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > works for escaping backticks in between texts", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > delete() should not raise an error", + "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should wait for the current batch to finish to request the next one", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches all chars with words-only off", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected style attributes when avatar url matches default", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near bottom edge of window", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toRightOf > should return the correct positioning", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > clears widget persistence when destroyed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page", + "test/unit-tests/components/views/rooms/AppsDrawer-test.tsx::AppsDrawer > honours default_widget_container_height", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with backspace", "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with the selected source when share clicked", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after poll ended", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > ends the call immediately if the session ended", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCards > overwrites history", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change the power level of the current user", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays pre-prepared playback with correct playback phase", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message when kicked", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > returns no unsent messages", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a device with no metadata", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is not provided > does not render a link to open the room settings people tab", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions are added after app start", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (M_FAKE_ERROR_CODE) occurs", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general settings tab when no initialTabId", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > hasRecording should return false", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration response is invalid", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows non-radio buttons if the poll is ended", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights the winning vote in an ended poll", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 0", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (other widget)", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > firing the read receipt event handler with a null event_id calls dispatch with undefined not null", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an empty and non-empty array", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for an URL", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if the thread hasn't a notification anymore", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds up to nearest day when more than 24h - 40 hours formats to 2d", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > may send notifications", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should cancel search on escape", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > listens for incoming call events when voip is enabled", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to invited", - "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should use configured background url", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a JSONEventFactory for a room create event without predecessor", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should link to predecessor room", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open the tooltip when hovering a text", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept hyphens in name @foo-bar:server.com", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts rooms when timeline updates", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render message count input", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery out of sync panel when secrets are not cached", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when the pointers are the same", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with valid data > getRoomIds should return the new room Ids", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing backticks", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Does not show search box when there's less than 20 members", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with non-string body", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return the intersection", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns client information for the device", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render widgets", - "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking a digit button calls the correct function", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > goes to labs flag screen after live options is clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string when keyChar is falsy", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render mobile registration", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = false", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](foobar|)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing up and down arrows allows us to change the autocomplete selection", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a screen source in the default tab", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > updates delayed events", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if pinned events do not contain the event id", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should be able to handle empty parameters", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should create new matrix client with credentials", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads all events", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > doesn't change KEYBOARD_SHORTCUTS when getting shortcuts", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with floats", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides counter for muted rooms", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for special case input", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores all the trailing :", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should favourite a room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > should display the not encrypted status for an unencrypted event when the room becomes encrypted", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server forces enabled encryption", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when discovery and validation fails", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > shouldn't change when setting false", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > favourites are added to Notification States for all spaces containing the room inc Home", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is a private space", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns remaining duration", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with surrounding text", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders no votes if none were made", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables sign out button while sign out is pending", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should use permalink_prefix for permalinks", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not clean up listeners even if start was called multiple times", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes last known position after 30s of inactivity", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join disabled > does not render the RoomKnocksBar", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is ended if there is an end event", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with both the legacy and new keys removed", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user _is_ banned", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first valid space when selected metaspace is disabled", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the room's avatar", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > unpins event on pin option click when event is pinned", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for a redacted event", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :grinning", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > dispatches view settings action on preferences event", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with mjolnir tab selected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is in hierarchy", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return true for Room", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores duplicate :NUM (double port specifier)", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an VideoBody", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add space button when UIComponent customisation allows CreateSpace", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when calculatedValue is falsy", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes feature_allow_screen_share_only_mode setting to allowVoipWithNoMedia url param", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without msgtype", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should set join rule to public defaultPublic is truthy", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from users who change identities after verification", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_not_signed_in", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a verified device", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with a replace relation", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should display user profile when searching", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isError should return false", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders null when no devices", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should correctly handle getUserDeviceInfo() returning an empty map", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > should display the button", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > getAppVersion returns normalized app version", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders enabled invite button when current user is a member and has rights to invite", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > destroys beacons", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return the app avatar URL", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji replacement", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills get injected correctly into the DOM", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > does not display live location share option when composer has a relation", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested ordered lists", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with knock join rules", "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.file event type", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct < 0", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be enabled", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if label is unset", - "test/unit-tests/utils/export-test.tsx::export > maxSize exceeds 8GB", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should handle no email addresses", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add three widgets to top container", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child favourites", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes the toast", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string exists but not for for count and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Links to the event in the room if event ID is provided", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > replacements in the wrong order", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > buttons are disabled if there is an ongoing call", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for 2 targets with a room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > highlights when message's push actions have a highlight tweak", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should be predictable with double underscores", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > typing with the autocomplete open still works as expected", - "test/unit-tests/Terms-test.tsx::dialogTermsInteractionCallback > should render a dialog with the expected terms", - "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > does not render the room options context menu when UIComponent customisations disable room options", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should group hidden event reactions into an event list summary", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption unavailable > should create an unencrypted room", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should have disabled submit button initially", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with a non-thread relation > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert multiple new lines into existing document", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result does not include homeserver config", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A single instance starts up normally", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render email addresses", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a heading with count", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google Nexus 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should not create a public room without an alias", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock count is greater than 3 > renders a paragraph with two names and a count", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > throws with unavailable error when geolocation is not available", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Rooms are in sorted order after initial seed", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near right edge of window", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > renders container", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders an empty context menu for archived rooms", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should show all activated MetaSpaces in the correct order", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with an unverified session", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not renders user timezone if timezone is invalid", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns when removing a room that is not indexed", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > can call in large rooms if able to edit widgets", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders key icon", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I have not voted", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when onChange promise rejects", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request succeeds", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon when clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when meta+Enter is pressed", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed state events", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are some functional room members > should only return the non-functional members", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the main timeline", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline code", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should not parse @foo without domain", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", + "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the sender and question for a poll created by someone else", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > handles remote disconnection", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the setting is in a loading state", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should throw error if unregistering unknown token", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > does not parse room alias with too many separators", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > does not render back button on share type screen", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > renders in error mode when displayStatus is error", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display all the buttons when the space menu is opened", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > updates selected duration", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are removed", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element video room", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > creates a modal on openDesktopCapturerSourcePicker", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > should return true from canSelfUpdate()", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length > B length", + "test/unit-tests/editor/position-test.ts::editor/position > move forwards crossing to other part", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should not call notifyTimelineHeightChanged() for a different context", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > contentType should return the VoiceRecording value", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should emit onChange calls", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when room is tombstoned", + "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room in an intentional mentions world", "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live but has a latestLocation", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add a phone number", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should ask the user to enter the recovery key", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide cryptoSetup extension", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > should syntax highlight code blocks", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > does not change parent hook state if suggestion is null", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> orphans transition", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create public space [Chrome]", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound url if no name", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > registers clicks", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should return the profile", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room has only one joined member", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase typed in", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device id as fallback when device has no display name", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > does nothing if given no room ID and not viewing a room", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > strips plaintext replies", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send rust cryptoSDK superProperty correctly", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in German without item limit", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key undefined", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for an MXID permalink", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with RovingTabIndexWrapper", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with notifications tab selected", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds ongoing calls that are created by the session manager", + "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > decodes audio data when not greater than 5mb", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should not choose a high-contrast theme if not available", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by name", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > always shows share user button and clicking it should produce a ShareDialog", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > does not update the timezone when userTimezonePublish is off", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should expand arrays", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have contentEditable at false when disabled", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides counter for muted rooms", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > room mentions", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message when there are no active polls in the room", "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add room button when UIComponent customisation allows CreateRoom", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for an enabled feature", - "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders null when no location", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > does not render a poll tile when end event is invalid", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a combobox and attempts to change power level on change of the combobox", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with dots in name", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to preset value when custom input is blurred blank", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no default property", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped html", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not render if not wrapped in room context", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should reload when changing language", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for non-video mimetype", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Denied for a widget", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should recover from a server exception", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for IE", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving a reply_to_event action", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completionId if present in the completion", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place according to key index", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is displayed with the setting enabled", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > values() should return the items in the cache", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the other member has no avatar URL", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false for the same pointer", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return true for Room", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct > 1", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > creates static own location share event on submission", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; U; Android 6.0.1; SM-A510F Build/MMB29; Flavour GPlay; MatrixAndroidSdk2 1.0)", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates desktop notification when enabled", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates users state when a member is added", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display the children if there is no user to display", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should have disabled submit button initially", - "test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx:: > renders a QR code", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns true when platform supports notifications", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from RECONNECTING to ERROR", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to false for all of them, it should return false", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload to install update", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should render section when account deactivation feature is enabled", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should have a waveform, a seek bar, and clock", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > renders", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with an unread message in a thread", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are unpinned", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to restricted", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > rings when incoming call state is ringing and notifications set to ring", - "test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx::JumpToDatePicker > renders the date picker correctly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: File > should not display the pinned message badge", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 0 to 0s left", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as status if valid", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not leak javascript from room names or topics", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:com (mostly for (TLD|DOMAIN)+ mixing)", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect customApp", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in private room", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should clear the timezone when the publish feature is turned off", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > clicking on a mention in the composer dispatches the correct action", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should not enable for anyone if percentage is 0", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone; iOS 15.2; Scale/3.00)", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog when crypto is disabled", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > resets on cancel", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > throws for an unhandle update cause", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when no device is available > should log the error and show the \u00bbNo media permissions\u00ab modal", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; SunOS i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: SunOS", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns the latest location event for a live beacon with location", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > should render the expected pill", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns correct results after final colon :o", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :bow", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/jpeg", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if #roomMention is surrounded by text", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should insert the read-marker in the right place", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a non-permalink", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > appends the phase to any phases that were there before", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should dump debug logs on Action.DumpDebugLogs", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > handles error when updating join rule fails", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile if there are via servers", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps underscores", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the creation event", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > should listen to showUrlPreview change", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :cop", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > updates > updates on decryption within 1s", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the item in the middle should work", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Tolerates multiple, repeated inserts of existing rooms", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing email addresses", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > does not include pending root event in the timeline twice", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999 as 1M", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects an ended call", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user not found via API should return null and cache it", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns false when platform does not support notifications", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > SetFocus works as expected", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Regenerates all lists when the feature flag is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentListToRoom with eventRelation when present", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished without parameter when Done is clicked", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders message count input with default value 100 when export type is lastNMessages", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested formatting", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should pass event to posthog", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device id as fallback when device has no display name", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does show copy link button when supplied a link", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > renders size limit input with default value", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > correctly interpolates", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > excludes rooms that are not found by matrixClient", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling off", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > ignores other account data events", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should reject with usage for invalid input", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to connect backup if there is a backup on the server", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Calls onLogoutClick", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with 1 \"other\"", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls kick on deny", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getMediaConfig > gets the media configuration", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly handles audible keywords without mentions settings", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple variable substitution and translates with fallback locale, attributes fallback locale", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > creates a new list based on the key", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme by default", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > fetches the related poll start event and displays a poll tile", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when no static clientId is configured and no registration endpoint", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect knock rooms in v7 and above", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > cancels my local vote if another comes in", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > initiates map with geolocation", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.favourite=", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should return static clientId when configured", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 0", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> home transition", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room with no parent spaces or members when changing join rule to restricted", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should show restricted room join rule when upgrade is enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should send message on save button click", - "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should fall back to camelCase keys when needed", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should not parse #foo without domain", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw if user_id is missing from response", - "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > calls clean on mount", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should render results when the promise resolves", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does shows context menu when right-clicking options", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders only some buttons in narrow mode", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > should render the room", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > does not emit filter changed event on store update when nothing changed", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > in empty line", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates url preview visibility on encryption state change", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 1-12 in numeric mode", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should set join rule to public defaultPublic is truthy", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is undefined", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if subheading is unset", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > does not dispatch when notifications are silenced", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an non-empty and empty array", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > adds a toast to an empty store", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forRoom > constructs a link given a room ID and via servers", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon is not live", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > renders if there is a call", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > doesn't allow submitting until there are options", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show oidc-aware flow for oidc-enabled homeserver when oidc native flow setting is disabled", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > doesn't show ask to join if feature is disabled", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are granted", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button when user cannot send messaged", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > gets available spellcheck languages", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Audio", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = false", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room member list on button click", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (with plain text around)", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should show error if unable to load", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > disables room preview toggle when history visibility changes are not allowed", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > should show the email input and mention the homeserver", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders a button element", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a reply using a slash command", - "test/unit-tests/createRoom-test.ts::createRoom > correctly sets up MSC3401 power levels", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders authorization_expired", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to max", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should call onSelectionChange() when an item is removed from selection", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders element replacements", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display Close list button if the message pinning list is displayed", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 2 (device not verified by its owner)", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 0 unreads, getHiddenHighlightCount should return 0", - "test/unit-tests/utils/colour-test.ts::textToHtmlRainbow > correctly transform text to html without splitting the emoji in two", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :sweat", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Lists all rooms that the client says are visible", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is only a predecessor event, it should not count predecessor highlight", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends only one vote event when I click several times", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > flush > should clear profiles, known profiles and errors", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > sets and displays audio processing settings", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_not_found", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return true for Room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls addReplyToMessageContent when there is an event to reply to", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders sound on button when call is silenced", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > values() should return the items in the cache", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should call `termsInteractionCallback` upon M_TERMS_NOT_SIGNED error", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should reuse the result", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 23 to 23s left", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a live beacon that does not have a location", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button on non-actionable event", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Samsung SM-G960F; Android 6.0.1; RKQ1.200826.002; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to unknown space is a nop", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'set up recovery' toast", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up our own device if we're disconnected", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room with dynamic predecessor", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows reply button when we can reply", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should start the DM directly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not panic if there is no crypto", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight message where no version of message matches any push actions", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should show an error dialog when no homeserver is found in local storage", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders success screen when export is finished", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is disabled > should not have the option to create a knock room", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > handles the happy path", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should look up userId using access token", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders QR code", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send Legacy cryptoSDK superProperty correctly", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > should send the new password and show the click validation link dialog", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map setup throws", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > by default adds Twemoji font", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > tracks participants in room state", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = false, DM = true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not add relations for a .messages or .effects category command if there is no relation to add", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as status if valid", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show password and confirm password fields in separate rows", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should move if there is a room", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should ignore home shortcut if dialogs are open", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > removes a room avatar", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the spinner when creating backup", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > refocuses on same beacon when clicking list item again", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in the room > should render as expected", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test broken mentions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip single / from message prefixed with //", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have disabled class when disabled", + "test/unit-tests/settings/controllers/AnalyticsController-test.ts::AnalyticsController > Tracks a Posthog interaction on change", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > highlights when message's push actions have a highlight tweak", "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > renders the date separator correctly", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > calls showJoinRoomError()", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > doesn't clean up valid devices", - "test/unit-tests/components/views/location/shareLocation-test.ts::shareLocation > should forward the call to doMaybeLocalRoomAction", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > does not race with lazy loading", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=true", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > can render replies", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon without a location correctly", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should re-render favicon when setting error status", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go straight to logged in view when user is not in any encrypted rooms", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested quotations", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isCreated should return false", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > get() should return undefined for an item not in the cahce", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if it is not a paste event", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should aggregate error codes correctly", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render same modifier twice", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow pasting the same user multiple times", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after joining", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should call MatrixClient::setPassword with expected parameters", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders rate_limited", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not call getCommand for valid command with invalid prefix", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added and removed an alt aliases", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should not show more than 100 messages", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status invalid-status", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > does not open maximised map when on click when beacon is stopped", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a refresh token", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > returns deviceType unknown when user agent is falsy", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > and setting MessageComposerInput.showPollsButton to false > shouldnot display the button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > falls back to the completion for a room if completion starts with #", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape backslash in placeholder", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should convert HTML entities", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should not render a room with a activity in the TAC", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders close button correctly when encryption panel with a pending verification request", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should not has placeholder", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should reset liveliness error when server config changes", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > getAppVersion returns normalized app version", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message when there are no active polls in the room", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term was not a permalink", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from users who change identities after verification", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button and clicks explore public rooms", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should close the release announcement when the TAC button is clicked", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader properly opens a context menu when clicked on the button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Should have contentEditable at false when disabled", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set for unknown users", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > clears the unread flag when viewing a room", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds down to nearest day when more than 24h - 26 hours formats to 1d", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see removed from A->B", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render suggestions when a query is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content does not contain any mention or command characters", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the pusher status when clicked", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate if the device is flagged as migrated", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse adjacent member events", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not leave/ban", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly identifies transitions", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > should display message if crypto is not available", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should create oidc client correctly", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return expected results when all response times similar", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute modifications", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders own and live location options", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and confirm the email link and submitting the new password > should send the new password (once)", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Dart/2.18 (dart:io)", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999 as 100K", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > checks whether form submit works as intended", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", "test/unit-tests/utils/exportUtils/JSONExport-test.ts::JSONExport > should have a Matrix-branded destination file name", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.archived=", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with geolocation error when geolocation.getCurrentPosition fails", - "test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx::RoomStatusBarUnsentMessages > should render the values passed as props", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add fields related to edition", - "test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx::PinnedMessageBadge > should render", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should return clientId from localStorage", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return true for Room", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and emits beacon liveness changes from true to false", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > clears all notifications", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > markdown-like symbols", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders advanced settings tab when enabled", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > dropping text does not trigger auto-complete", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > clear() should clear the cache", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests a room whose alias matches a prefix", - "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should use inviter's id when room member is not available", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > doesn't end the call when the last participant leaves", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should fall back to /download/ if /thumbnail/ fails", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders with children", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > updates on event decryption", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > enables encryption after confirmation", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist credentials", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles full cycles", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills with interesting characters in mxid", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > always shows share user button and clicking it should produce a ShareDialog", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for poll start event", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple invites", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders a poll", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct buttons when definitions have checked prop", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > does not call showJoinRoomError() when canAskToJoin is true", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > updates when roomId prop changes", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> orphans transition", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should not clean up drafts before expiry", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with args", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > don't sort the order of users sent by the server", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if everything was forgotten", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are not backed up", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > should show CreateSecretStorageDialog if forceReset=true", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > works if a room is specified", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the start when all is undefined", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor in the create event, it should count predecessor highlight", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map display is not configured properly", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for FR", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be healthy if no indexeddb", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > start ringing on ring notify event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string for a falsy argument", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a private space > does not render addresses section", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest users from other server when room has m.federate=false", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > allows dots in localparts", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > versions > calls install update", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text", - "test/unit-tests/components/views/avatars/MemberAvatar-test.tsx::MemberAvatar > shows an avatar for useOnlyCurrentProfiles", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the sticker picker", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should display an error if the link has not been clicked", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should be a singleton", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length < B length", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have contentEditable at false when disabled", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backslashes", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an VideoBody", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show reply button when we cannot reply", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.video event type", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > renders stop button", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > no mentions", + "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should remove all pinned events when clicked on Continue", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > hyperlink", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing an opening square bracket work", "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return true", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > calls onClick handler on click", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts room notification type", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include reactions", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverified device", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when calls to client.getRoom and room.getEventReadUpTo are non-null, shows read receipt button", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not call the callback if it\u2019s disabled", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > should not render banned section when no banned users", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > does not update synced rules when main rule update fails", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of the current user", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats without seconds", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return token from localStorage", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic with emoji to HTML", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should debounce quick changes", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with line breaks", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader has the correct option selected in the context menu", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the verification requirement is withdrawn", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are not backed up", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the matrixRTC session has ended", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders timeout as selected option", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > marks the room as read even if the receipt failed", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display a placeholder", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of a known screen", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Odd", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding email", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when participants change", + "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > supports events with missing timestamps", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking with a drag motion above the threshold of 5px, it should not pass the click to children", + "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > renders", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > suggests connecting session to key backup when backup exists", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > dispatches reply event on click", + "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an unknown room > should not update the account data", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu (except voice messages) in narrow mode", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when feature is disabled", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > displays message when room cannot federate", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens invite dialog on button click", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should use permalink_prefix for permalinks", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render message count input", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all inactive devices button works", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > renders options menu", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > enables play button when playback is finished decoding", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without room ID > should raise an error", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is disabled", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > renders an ended poll", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders the date separator correctly", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > keeps same tab active when order of tabs changes", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > and a new event appears > should emit the new event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace at-room mentions with `@room` in body", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery out of sync panel when secrets are not cached", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > when an error occurs while setting an item the cache should be cleard", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > disables Element calls", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the poll topic on mount", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: ThreadsList > shows an unread notification badge", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > renders button with an unread marker when room is unread", + "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is bridging messages", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was reported before a logout/login cycle", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should prepend https to input if it lacks it", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return true for items in the caceh", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when some secrets are not in 4S", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add and remove mentions from the edit", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should support pasting one username that is not a mx id or email", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should ask if user wants to unban user if they have permission", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom selection element when renderSelection() is defined", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > shows a face pile for rooms", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Jitsi video room invites", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with multiple threads", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected attributes when avatar url is not default", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the last item should work", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns false", + "test/unit-tests/editor/position-test.ts::editor/position > move first position backward in empty model", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders an error message", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > displays fallback text when the poll end event does not have text", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > renders expected fields", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > separates metadata with a dot", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with custom options", "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with args", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should revoke access and refresh tokens", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > shows ask to join if feature is enabled", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > if rooms should not be encrypted > should create an unencrypted room", - "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should roll over", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames ending in a backslash work", - "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if user lacks permission", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted and later becomes visible", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout IRC correctly", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles text in tags and translates with fallback locale", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > clicking toggle calls onDeviceExpandToggle", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should clear text field and suggestions when a suggestion is accepted", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should be able to handle an empty result", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom(), sets promptAskToJoin state to false and shows an error dialog", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be ok if MigrationState greater than `NOT_STARTED`", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if setting true and existing event is true", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button on non-actionable event", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders static remaining time when displayLiveTimeRemaining is falsy", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string exists but not for for count and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a mobile device type", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is ignored by default", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server forces enabled encryption", + "test/unit-tests/utils/threepids-test.ts::threepids > lookupThreePids > should return an empty list for an empty list", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns forced value when setting is incompatible", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the overflowing case correctly", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known force_disable for encryption setting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onChange handler", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send cryptoSDK superProperty when enabling analytics", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should pass through to the handler if setting is not disabled", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of unreads", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows set up recovery toast when user has a key backup available", + "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly with an opened room", "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return Jan-Dec in short mode", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects only sessions that are part of the active filter", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org/e/event?via=elsewhere.ca", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should still attempt to revoke refresh token when access token revocation fails", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows edit button when we can edit", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > should log the invalid content", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally false", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > toggles device expansion on click", - "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > tries to decode ogg when decodeAudioData fails", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > spoiler", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > with an existing widgetApi with requiresClient = false > should display the \u00bbPopout widget\u00ab button", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not generate previews for rooms not rendered", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when shouldThrow = true and there is an error it should raise an error", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not update bounds or center on changing beacons", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > should render the PiP content", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should return to default view if adding is cancelled", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when current user membership is not joined", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 10s if window un-focused", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > ignores events for irrelevant beacons", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > video room space contains all video rooms", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle resolutions after unmounting sanely", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when show_labs_settings is enabled in config", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu in wide mode", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify an MXID permalink", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in both hemispheres", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > dismisses itself once the request can no longer be accepted", - "test/unit-tests/utils/objects-test.ts::objects > objectClone > should deep clone an object", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline styling", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationPositionToTimedGeo() > maps geolocation position correctly", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > does nothing when there are no toasts", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 1-parent variant", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if the offset is outside the content length", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with dynamic predecessor", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the invite button will call MultiInviter.invite", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should work with empty queries", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same tag", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default encryption setting is set to something other than false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is /", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with a soft-logged-out session > should show the soft-logout page", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > indicates support for spellcheck settings", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is the exact same moment", - "test/unit-tests/editor/range-test.ts::editor/range > range trim spaces off both ends", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Even", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TF:h", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return true from VoiceRecording", - "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should force the setting to be disabled if disable_fallback_ice=true", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for release version strings", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have been offline for too long", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time & date string without year if it is within the same year", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should not focus when disabled", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event does not contain geouri", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have hover style when hovered and reversed", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > sets instance on window when doesnt exist", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for non public room", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders marker correctly for a self share", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send html message", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns true when setting value matches incompatible value", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace room mentions with room mxid in body", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with hyphen in domain part", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with private visibility", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > breacrumbs > should send breadcrumb updates over the IPC", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly rejects quick reaction with extra text", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > removes avatar", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 4", - "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does render the permalink", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should call notifyTimelineHeightChanged() for the same context", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders an error message", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for LocalRoom", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object pointer", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for a disabled feature", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated GIF", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at end of last line", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when removed an alt alias", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > allow typing e-mail addresses without splitting at the @", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should show BulkRedactDialog upon clicking the Remove messages button", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should call onTokenLoginCompleted", - "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback on from stopped state", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empty object as valid content", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should clear storage", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting within a word", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows no shield for a verified event", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = false", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > deselects all sessions when all sessions are selected", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons by descending expiry time", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 5", - "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > should show poster for encrypted media before downloading it", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is edited", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > does nothing when room tag is not allowed", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > paginates", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return undefined for a room without predecessor", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns true when snooze timestamp in storage is less than a week ago", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render nothing when there are no pinned events", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > should syntax highlight code blocks", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming to-device messages to the widget", - "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from stable prefix", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by function", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key with an empty m.topic key", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > clears unread marker when room notification state changes to read", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with federation", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should pin the event if not pinned", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.answer", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when SSK not cached", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should enable spell check", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record high-quality audio if voice processing is disabled", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left and some orders are undefined", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > switches to spotlight layout when the widget becomes a PiP", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is encrypted and the url preview is enabled", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if a room other than the current room is open", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if no functional members state event exists", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999 as 10M", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > does not allow forwarding a poll", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls fetch when data types has text/html and data can parsed", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on active poll list item click", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from RECONNECTING to SYNCING", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not disallowed by ACLs", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is not supported > renders link to download a desktop client", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows an out-of-sync toast when one of the secrets is missing", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should no-op if the badge count isn't changing", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > updates on new responses", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for an event without a renderer", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to min", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders loading state correctly", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for mismatched extension", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > should return the same list if the lookup doesn't return any results", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback with a reason", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays when session is connected to key backup", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should update OIDCState for a widget", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload on window location object", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has badge style for notification", - "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on number enums", - "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > renders", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to get pickle key", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not accountData", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a beacon that has a shareable location event", - "test/app-tests/wrapper-test.tsx::Wrapper > wrap a matrix chat with header and footer", - "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should support events with", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > does not add a geolocate control when allowGeolocate is falsy", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no crypto-setup extensions are provided by a registered module", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > remembers the event being replied to when swapping rooms", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while loading", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return true when force_disable property is true", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with body should return \u00bbuser: body\u00ab", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar for an empty playback > should render correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.conferences=", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > updates when the list of knocking users changes", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when user does not have permission to add children", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on desktop", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > enables event indexing on enable button click", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the menu", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows set up recovery toast when user has a key backup available", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Odd", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should take user to view room for unjoined knockable rooms", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > does not allow signing out of all other devices from current session context menu", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept :NUM (port specifier)", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > does not try to center when no center uri provided", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a 'Start' button", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns default theme when value is not a valid theme", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > renders thread button on own actionable event", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room low priority", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders react children", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with RovingTabIndexWrapper", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > uses my local vote", - "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should maintain the pointer to the given array", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as alert if invalid", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should enter reset flow when showResetIdentity is set", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > renders only the video call element", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > does not display live location share option when composer has a relation", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders homeserver_lacks_support", - "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should remove all pinned events when clicked on Continue", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content contains a command but is not the first text node", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows deleting keywords", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders own and live location options", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate removed properties", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :monkey", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should listen to the right panel", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show set room layout button", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show modal if error is encountered", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should not respect HTML tags in plaintext message highlighting", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for regular unreads", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > doesn't lookup showHiddenEventsInTimeline while rendering", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > signs out of all other devices from current session context menu", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Nulls in location are not shown in URI", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track events if anonymous", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is the exact same moment", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix-help.org", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > upload should raise an error", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toRightOf > should return the correct positioning", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains some items where one of them is a replacement > should contain the last recently set items", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show spinner above results when backpaginating", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should overwriteAccountAuth", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders not logged in message", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (other widget)", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return true for pinnable event types", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isError should return false", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, finished poll", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > off should forward the call to VoiceRecording", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a LocalRoom > should not show the stickers button", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change update", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the read-marker that fall in summarised events after the summary", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles complex transformations", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return false if client cannot send state event", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render block katex", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we hide the banner", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > removes toast when remove function is called", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a closing square bracket work", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the QR code if disabled", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames other session", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time left > should not call stop", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns null when the first character is not / # @", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should distribute differently depending on the feature name", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should not persist device language when not available", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all unverified devices button works", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, unfinished poll", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should display or not placeholder when editor content change", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render welcome screen if mobile registration is not enabled in settings", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is shown if there is an ongoing call", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single empty item are not considered markdown", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Renders a SendMessageComposer and MessageComposerButtons by default", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show both SSO button and username+password if both are available", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a TextInputField", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu with all the options", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > removes the roomId on ViewHomePage", - "test/unit-tests/components/views/Validation-test.ts::Validation > should handle 0 rules", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should make correct request to complete authorization", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not track a failure for an event that was tracked previously", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Integer lat and lon", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps square brackets", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a matrix event", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f emoji", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if a room exists > should return the room and dispatch a view room event", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > renders beacon info", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should change the setting when toggled", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an unknown message in the same room with the label \u00bbMessage\u00ab", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders etag_missing", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest invalid MXIDs", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a limit", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should allow reset of cross-signing", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when caret is not at beginning of the text", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val < 0", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config 404s", - "test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts::Algorithm > sticks rooms with calls to the top when they're connected", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should should open integration manager on click", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with language specifier", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > kills live beacons when geolocation is unavailable", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with a custom class name", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and a connection error occurs > should show an info about that", - "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should ordering by the provided key order", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return true for Room", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking left > should skip to minus 5 seconds", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > eats clicks to maplibre attribution button", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added and removed in the same set", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > startOidcLogin() > navigates to authorization endpoint with correct parameters", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not store clientId or issuer", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > opens encryption setup dialog when verifiying current session", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for a mention that contains punctuation", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when expanded", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token when encrypting the token fails", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not current user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should clear stores", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > uses banners display name when available", - "test/app-tests/server-config-test.ts::Loading server config > should not throw when both default_server_name and default_server_config is specified and default_server_name isn't resolvable", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > should override browser shortcuts", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > generates big emoji for emoji made of multiple characters", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > should return the resolved members", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for the home space", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > should redirect to verification if set to phase MemberInfo for a user with a pending verification", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.conferences=", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should render the component", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse loud keyword notifications", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when some devices are selected", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > for an empty DM room list > should return undefined", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for home -> all transition", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji replacement", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbRe-enter email address\u00ab > go back to the email input", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > pasting text does not trigger auto-complete", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room is undefined", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the deny button if the power level is insufficient", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should not find LocalRooms", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the end when all is undefined", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > auto-approves capabilities of virtual Element Call widgets", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a QR code if the other side can scan and QR bytes are calculated", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once, even with new contexts", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns an empty object when room map has not been populated", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event to the widget", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an explicitly stopped beacon", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 2 pinned event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if latitude is not a number", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event that is not in timeline but relates to unknown parent to the widget", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders live time remaining when displayLiveTimeRemaining is truthy", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the timeline window", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add pasted values", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as tooltip if custom tooltip set", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _tDom", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to canonical parent space for room", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 6 hours, 48 minutes, 59 seconds formats to 6h 48m 59s", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog > should close the dialog and show the password input", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should not automatically close when a modal is opened under the existing one", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after a spoiled ballot", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing email addresses", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if userIds is empty", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > does not send chat effects in threads", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders banned message", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, both sides of meridian", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should join subspace when joining nested room", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should roll back power level change on error", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by power level", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Odd", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > shows a dot if the level is activity", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the local notification settings state", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns initial screen from session storage", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns a fake ts for rooms without a timeline", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room with read thread messages", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > destroys and removes beacons when current user leaves room", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isError should return false", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders stopped state", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects call type", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > backslashes", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.notice correctly", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > emits filter changed event when updateSpace is called even without changes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with args", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window to get enough overlay events", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly migrates old settings to the new model", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > ignores node", "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for unknown error", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > opens delegated auth provider to sign out a single device", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests a red ! if the user has been invited to a room", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for if no identity server is configured", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow signing out of all other devices from other sessions context menu", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](|)", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify room aliases", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should logout of posthog", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > renders notifications matching the snapshot", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should submit using validated config from a valid .well-known", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle divs", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-reactions", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when userTimezonePublish is enabled", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for unsent event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a deviceId", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should allow rearranging via drag and drop", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > asks for confirmation before deleting a backup", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > removing whole string", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders null when no devices", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > emitCurrent > should emit the related event", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if all users have a device", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoTime > should match given locale en-GB", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a sync error", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions event is falsy", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in one of the feature groups are supported", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys if available", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and a room is viewed > and the quick settings are open > should render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command category is not .messages or .effects", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > leaves space when leave option is clicked", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > handles saving beacon event id when local storage has bad value", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status not_sent", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends plaintext messages correctly", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 59 seconds formats to 59s", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > ignores events for irrelevant beacons", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should not show the attachment button", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with space name", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for ConnectionError", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > invites anyway", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option when user does not have rights to pin", - "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should prefer snake_case keys", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hostnames with ports", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at end", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room IDs with some candidate servers", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove a phone number", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should ask to set up a recovery key when there is no recovery key", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfile should return undefined if the profile was not fetched", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > OIDC Aware > should resolve account management endpoint", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in a thread > should render as expected", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > updates if ID server is changed", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a room inside of a space that was being viewed", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > removes marker on unmount", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the room is not a DM", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for local room ID", - "test/unit-tests/components/views/location/MapError-test.tsx:: > applies class when isMinimised is truthy", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > and setting MessageComposerInput.showPollsButton to true > shouldtrue display the button", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > wraps single anchor", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > hides export format input when format is valid in ForceRoomExportParameters", - "test/unit-tests/editor/history-test.ts::editor/history > push, then undo", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added and removed in the same set", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders user info", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > should send room oob data to start login", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors feature is not enabled > passes the flag through to getVisibleRooms", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does not show copy link button when not supplied a link", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Curl Client/1.0", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render selected items passed in via props", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit and includeCount", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates rooms state when a child room is added", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for monthly_active_user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when localStorage is not available", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"The sender has blocked you from receiving this message\"", - "test/unit-tests/useTopic-test.tsx::useTopic > should display the room topic", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should show 'no results' if appropriate", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without ID > should raise an error", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is undefined", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds calls", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Removes old room if it finds a predecessor in the m.predecessor event", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays confirmation dialog if rooms are encrypted", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for an immediate ready room > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return an empty list for an empty input", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is false", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for unsupported desktop browsers", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > no switch required, room is in current space", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an verified E2EIcon when the e2E status = Verified", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalinks with a via argument", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached, even if other RoomState.newMember events fire", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device from kebab menu", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds no calls", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key undefined", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > just a code block", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when room already has a recording", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows the dehydrated devices if there are multiple", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the import e2e keys dialog on click", - "test/unit-tests/components/views/voip/VideoFeed-test.tsx::VideoFeed > Displays the room avatar when no video is available", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > can insert a mention into a text node", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs including formatting", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > updates notification level when changed", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should show a spinner while the setup is in progress", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should not find a room for an unknown Id", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > should force calls to silent when local notifications are silenced", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for poll start event", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested ordered lists", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when all devices at app start are verified", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverifiable device", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing pub key if set", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with empty content body property", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return true if pinned events contains the event id", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders the message button", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > does not update on other account data", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > rechecks theme when setting theme fails", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > ordered lists", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid image files", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles text in tags", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is defined but '.m.room.message' isn't, uses .events_default", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - ", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the pusher state", - "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens with a pickle key", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should display 3pid email addresses and phone numbers", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for event permalinks without a custom label", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time is up > should not call stop", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > If the predecessor room is not found > Shows an error if there are no via servers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting an at-room completion inserts @room", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for unsupported browser if user accepted already", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should remove mentions that are removed by the edit", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a heading", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching push rules fails", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > onNewInvitedRoom > should call onNewInvitedRoom on VoipUserMapper.sharedInstance", - "test/unit-tests/editor/history-test.ts::editor/history > not every keystroke stores a history step", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a number enum", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render phone numbers", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > handles error when updating setting fails", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > renders banned users", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders map correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when sentContentListToRoom errors", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can remove email pushers", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Opens room inviter on button click", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FT:h", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > doesn't cancel my local vote if someone else votes", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should not prompt the user if the requested key is not the default", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity needs approval", - "test/unit-tests/Notifier-test.ts::Notifier > getSoundForRoom > should not explode if given invalid url", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 5 (Encrypted by an unverified session)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with a string calls the onChange argument", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a multiple power level changes", - "test/unit-tests/Rooms-test.ts::setDMRoom > when logged in as a guest and marking a room as DM > should not update the account data", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows view in room button when the event is a thread root", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns activity if a thread in the room unread messages", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render when homeserver does not support cross-signing", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display all the buttons when the space menu is opened", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + modifier key combo", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should has placeholder", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > returns an empty map for completion types other than room, user or at-room", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > a notification and a highlight summarise to a highlight", - "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders with children", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_already_exists", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays unencrypted rooms with toggle disabled", - "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should insert at the correct end", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for one beacon", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for spaces", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > creates a geolocate control and adds it to the map when allowGeolocate is truthy", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track any events if disabled", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given more React children", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls invite on approve", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > 'Verify own device' flow > should show 'Waiting for you to verify' after confirming", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a User should start a DM", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = Element Desktop: macOS", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders default tabs correctly", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (explicit)", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits to unknown events", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote if the poll is undisclosed", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return J-D in narrow mode", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for supported browsers", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > handles homeserver too old error", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends unthreaded receipt requests", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders joining message", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > renders button with an unread marker when room is unread", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with more than 2 members", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > informs widget of theme changes", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (invite)", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should render nothing if no url given", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > opens the panel in the given room with the correct phase", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was answered elsewhere", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > should render as expected for a DM room with a single third-party invite", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the instance was forgotten", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave() and shows an error dialog", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event that is not room message", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes avatar", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return issuer from localStorage", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails without data.flows", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > invite to a subspace is only shown at the top level", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights multiple winning votes", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention with a completionId uses client.getRoom", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw if scalar_token is missing in response", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > a threaded receipt for the event makes the room read", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > should change to true when setting true", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show spinner whilst loading", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > does not render create space button when UIComponent.CreateSpaces component should not be shown", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should combine search results when the query is present in multiple sucessive messages", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist a refreshToken when present", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > keeps the original timestamp after repeated decryption failures", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should call scrollIntoView if specified", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > translated correctly when plural string exists for count", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client when creating token refresher fails", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should create html message", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should not collapse beacons as part of creation events", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should omit attachments", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > hides unpinnable events not found in local timeline", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map setup throws", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on own actionable event", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does nothing for empty element", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to other rooms for orphaned room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we were waiting for the lock ourselves", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Unverified", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Conferences and Room but no People section", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_already_signed_in", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of a known screen", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > Should successfully complete a password flow", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > renders poll history tab", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates back to poll list from detail view on header click", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.video for video files", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > displays an error when session display name fails to save", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Renders as expected", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > keeps same tab active when order of tabs changes", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'pickleKey'", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Links to the old version of the room", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > has the search field", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > instance > should return an instance", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty content should return null", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element call room", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button click", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for normal poll start", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not make /messages requests when exporting 'Current Timeline'", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention without a completionId uses client.getRooms", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from SYNCING to SYNCING", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > contentLength should return the buffer length", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when the content has changed", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return true if user can pin or unpin", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the overlay timeline", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room without predecessor", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing linebreak", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is not a valid URL", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons with timestamps before beacons without", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders radios correctly", - "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_config", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should call onChange when custom input is blurred with a number in it", - "test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx:: > renders", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > renders correctly", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > links", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should suggest e-mail even if lookup fails", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > no-ops for idential changes", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getApps > should return apps from the widget store", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test broken mentions", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code in backticks", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > (filtering warnings about no predecessor) > Shows an empty div if there is no predecessor", - "test/unit-tests/settings/controllers/AnalyticsController-test.ts::AnalyticsController > Tracks a Posthog interaction on change", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is defined", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Compact correctly", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes non-consecutive with varying length backticks in between text", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the result was forgotten", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > retains poll disclosure type when editing", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setup > uses the baseUrl", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to true when setting true", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns false", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for combined verified and inactive filters", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders plain text children", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders join and reject action buttons with correct labels", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with voip tab selected", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Register works as expected", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are backed up", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is non-null and room.getEventReadUpTo is null, shows disabled read receipt button", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should return `cached_title` from API /widgets/title_lookup", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description at first", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when the read receipt is earlier than the latest event", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > updates latest location", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > by default adds Twemoji font", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show branded SSO buttons", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > submits location", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > test user flow", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string exists but not for for count", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > ignores events for irrelevant beacons", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > appends events into summaries during forward pagination without changing key", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when config is invalid JSON", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > renders live duration dropdown with default option", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji varitation replacement", - "test/unit-tests/editor/position-test.ts::editor/position > move backwards within one part", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user passive after 10s of no activity", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of room creation events quickly", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element deletions", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows emoting with non-text parts", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the new poll option field after clicking add option button", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when UIComponent.InviteUsers customisation hides invite", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayISO > should return ISO format", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > does not try to fit map bounds when no bounds provided", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > removes client information on start if it exists", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should show error if user tries to use non-image file", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with react node and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > handles error when updating history visibility", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown remains plaintext", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no pinned event", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_cancelled", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should allow to change the recovery key when everything is good", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with only non-local votes", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler correctly when setting filter to All", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the room summary", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > should not display the button", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect custom fields", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=true on non-last event if last event is not eligible for special receipt", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completion if present and correct format", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns true when setting value is true", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room an be previewed", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > removes account data events for devices after sign out", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Even", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify the user to posthog if pseudonymous", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with non-string body", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon", - "test/unit-tests/components/views/settings/encryption/EncryptionCard-test.tsx:: > should render", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > toggles playback on play pause button click", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/gif", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to disconnect if the widget returns an error", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a location event in open street map", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows scores if the poll is undisclosed but ended", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent Jitsi widget with back and leave buttons when not viewing the room", - "test/unit-tests/editor/position-test.ts::editor/position > move first position forwards in empty model", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple tag substitution", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > updates state and emits beacon liveness changes from true to false", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account is managed externally", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should allow user to revert from a custom server to the default", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at -16px if given no previous position", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when calling with non-group call event", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > does not set position on geolocate event", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ViewRoomError if the alias lookup fails", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false without room", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Negative longitude and explicit CRS", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > updates room state when connecting and disconnecting", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server .well-known forces disabled encryption", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > don't show external conference button if the call is not shown", - "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > defaults to false when no setting exists", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no room", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should tag a room low priority", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > works when not a member", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > caret resets correctly to current line when untoggling formatting while caret at line end", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is disabled > should not have the option to create a knock room", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an explicitly stopped beacon", - "test/unit-tests/utils/export-test.tsx::export > checks if the render to string doesn't throw any error for different types of events", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Notification rendering context", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets message count on change", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > displays fallback text when the poll end event does not have text", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should attach an empty mentions object for a message with no mentions", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks without protocol", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when default encryption setting is false", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a beacon that does not have a shareable location event", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing closing square bracket", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered doesn't incorrectly override setting", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for verified filter", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should retry if initial attempt failed", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > takes someone's most recent vote if they voted several times", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > does not render sign out other devices option when only one device", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example.com\u00ab should return true", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders invite message", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre menu when the button is clicked", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders with correct classes when button has kind", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > should replace parameters in widget url template", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > and there is a thread timeline > should send receipts but no fully_read when reading the thread timeline", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple tag substitution and translates with fallback locale, attributes fallback locale", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready and call showUpdate when current version differs from most recent version", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should remove the link", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset type", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto", - "test/unit-tests/utils/export-test.tsx::export > maxSize is less than 1mb", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > only tracks a single failure per event, despite multiple failed decryptions for multiple events", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and the server liveness check fails > should show the server error", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally true", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space does not contain all favourites", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with no receipts", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > disables button correctly", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 1 (unverified user)", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if UIFeature.Feedback is disabled", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders room not found error", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not show jump to date error if we already switched to another room", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should not raise an error when recovery is valid", - "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from unstable prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept repeated TLDs (e.g .org.uk)", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest thread event was sent by the current user", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > onLoggedOut should clear the UserProfilesStore", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > tracks message sending progress across multiple rooms", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client with a tokenRefreshFunction", - "test/unit-tests/utils/threepids-test.ts::threepids > lookupThreePids > should return an empty list for an empty list", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should allow unpinning all messages", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting an unkonwn item should not raise an error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in the only feature group are supported", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > does not render other sessions section when user has only one device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving an Action.FocusSendMessageComposer action", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user active shortly after activity", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should emit onChange calls", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns red if a thread in the room has a highlight notification", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > lets you click it", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should be empty by default", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by presence state", - "test/unit-tests/utils/export-test.tsx::export > checks if the export format is valid", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return undefined when no claims in localStorage", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is undefined", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for a DM", - "test/unit-tests/components/structures/MessagePanel-test.tsx::shouldFormContinuation > does not form continuations from thread roots which have summaries", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = false, DM = true", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to disconnect if the widget returns an error", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > status messages", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 2", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog by clicking the background > should close the dialog and show the password input", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are removed", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can neither approve nor deny", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > appends the year for events created in previous years", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should retain backslashes", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on toggle click", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should not run the migration", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > failed to connect", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles absence of backup", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow removing multiple devices at once", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should handle download errors", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (without plain text around)", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should dismiss the device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if we have an existing suggestion but no command match", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm success > should set the room into creating state and call waitForRoomReadyAndApplyAfterCreateCallbacks", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send message when there is no roomId", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to 0 seconds when less than a second - 123ms formats to 0s", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > sets position on geolocate event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should proceed if server is not accessible", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > stops beacon when liveness changes from true to false and beacon is expired", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; OpenBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: OpenBSD", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains m.location with valid uri", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the non-overflowing case correctly", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile linking to an event if there are via servers", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with paragraphs", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > works for escaping backticks in between texts", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > findEditableEvent > should not explode when given empty events array", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if poll is fetching responses", - "test/unit-tests/audio/Playback-test.ts::Playback > stop playbacks", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns map of users to rooms with 2 members", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing by default", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room when changing join rule to knock", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users cannot see encrypted messages", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location unstable prefixed type", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > does not send any requests if everything has been read", - "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > shows a spinner at first", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sets layout", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at end", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should include app version", - "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > renders options", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > does not truncate a reason unnecessarily", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for an emoji suggestion", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for room links with vias", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Unregister works as expected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is *not* in hierarchy", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Should not display a warning if the user was verified and is still verified", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return true from VoiceRecording", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f emoji", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor event, it should count predecessor highlight", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (same widget)", - "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new room to an existing DM relation > should update the account data accordingly", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to plaintext messages", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > during crypto init", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when well-known force_disable is true", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with empty content body property", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns beacon ids for room when user has live beacons for roomId", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with keyboard tab selected", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a loading message while poll history is fetched", - "test/unit-tests/utils/objects-test.ts::objects > objectWithOnly > should exclusively use the given properties", - "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should update the value when UIStore's value changes", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.image event type", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should disable buttons when isUpdating=true", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders settings marked as beta as beta cards", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a hint", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up normally when the first shut down cleanly", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Even", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > defaults to moderator for starting calls", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should highlight words correctly", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/png", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string if date is within same day", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches ignoring accents", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when crypto is not enabled", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > escaped html", - "test/unit-tests/favicon-test.ts::Favicon > should clear a badge if called with a zero value", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests only spaces matching a prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @localhost:foo.com", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > send guest access event on toggle", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by recent when they have the same notif state", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > unhides the bar when a new knock request appears", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the deny button if the power level is insufficient", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for old-style version strings", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a thread message with the correct fallback", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a mobile device type", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > should return false", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget without timestamp > should not remove the last widget", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > trims whitespace, encloses the fonts by double quotes, and sets them as the system font", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > and some 3rd-party members have a profile > should resolve the profiles", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a room alias", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > updates size limit on change", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for should raise an error for a non-matrix.to URL", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no left space", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be disabled by default", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains height", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the overflowing case correctly", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when it is dismissed", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > history is generated for certain phases", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text heading", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are joined", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (11-inch); iOS 15.2; Scale/3.00)", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > calls onchange on on tab click", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not ring when incoming call state is ringing but local notifications are silenced", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > calls position handler with position", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > should filter the content", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for pl", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is not in the current space", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forEvent > constructs a link given an event ID, room ID and via servers", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error when bootstraping the secret storage, it shows an error", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns false for all sub-space child rooms when includeSubSpaceRooms is false", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles non-html input", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing all mentions from content", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should handle when staticOidcClients object is falsy", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should select other homeserver field on open", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should call bootstrapCrossSigning with an authUploadDeviceSigningKeys function", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should ask the user to enter the recovery key", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room can not be previewed", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length > B length", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner whilst QR generating", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when property changes are made", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map emits an error", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from someone else to me", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > sets position on click event", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders a dropdown option for a non-default timeout value", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.audio for audio files", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns true for needsUrlTooltips", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should not display the recovery panel when key storage is not enabled", - "test/unit-tests/components/views/settings/FontScalingPanel-test.tsx::FontScalingPanel > renders the font scaling UI", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding actions", - "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > accepts an accessibility role", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu (except voice messages) in narrow mode", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should launch a confirmation modal", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns mute toggle button if conditions met", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains m.location with invalid uri", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should not render pin button when user can't send state event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for double slashed command", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near bottom edge of window", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for state event", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is expired but live property is true", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > migrates URL previews setting for e2ee rooms", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include attachments", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple tag substitution and translates with fallback locale", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with some candidate servers", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > Dismiss toast if user starts call and skips lobby when using shift key click", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button mousedown when triggerOnMousedown is passed", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data when primary rule is disabled", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element heading", - "test/unit-tests/vector/routing-test.ts::onNewScreen > should not replace history if changing rooms", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed state events", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > should not show knock room join rule", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should allow an Admin to demote themselves but not others", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns the last ts", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should not camelCase a trailing or leading underscore", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support inline katex", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user inactive if no activity", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM Room > should render the expected intro", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > dms are only added to Notification States for only the People Space", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > adds users beacons to state and monitors liveness", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > getDefaultDeviceDisplayName > https://develop.element.io/#/room/!foo:bar & Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = develop.element.io: Chrome on macOS", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon with a location correctly", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders invite message with invited email", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using element call for large rooms", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is day before the current day", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds no votes if there are none", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return undefined when no issuer in localStorage", - "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should push a 3pid member card on the right panel stack when payload has an event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in an empty composer", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > before empty line", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when value is a valid theme", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens thread on click", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > assigns different keys to summaries that get split up", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on past poll list item click", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with no responses", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > clears highlight message in the room view store", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection is not a cursor", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > paginates", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders stopped state", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should persist credentials", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for admin contact links", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if secret storage is set up", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding msisdn", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when parsing is not successful", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > flushes rageshake before quitting", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > getViewRoomOpts > returns viewRoomOpts", - "test/unit-tests/components/views/elements/FacePile-test.tsx:: > renders with a tooltip", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom selection element when renderSelection() is defined", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should cache translations", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > displays a spinner after submitting", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > renders location icon", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a QR code if the other side can scan and QR bytes are calculated", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > sets position on geolocate event", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: default > should display the pinned message badge", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should listen to release announcement data changes in the store", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly with beacons", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is not knock", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at middle of single line", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm error > should set the room state to error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should return forced value is setting is disabled", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix123.org", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind a phone number", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return true for Room", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event with thread info", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show two pinned messages", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the menu", - "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when not animated", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > returns specified room when none of the versions is in hierarchy", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 2-parent variant", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should not show the \u00bbinvite anyway\u00ab dialog", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should not be able to change the power level if `canChangeLevels` is false", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > resets countSeen when no toasts remain", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go to setup e2e screen when user is in encrypted rooms", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns '...and more' with hasMore", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should unfavourite a room", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage for invalid input", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when rendering a DM room with a single third-party invite > should render the \u00bbwaiting for third-party\u00ab view", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption available > should create an encrypted room", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with labs tab selected", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a keyword responsible for triggering a notification", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance waits for the first to shut down", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have data-is-expanded when it has two lines", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Composer Layout > should have a waveform, no seek bar, and clock", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + multiple modifiers key combo", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (via default)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should scroll to bottom after sending a html message", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > remembers to not warn again", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > does not display advanced section toggle when join rule is not public", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up *eventually* when the first terminated uncleanly", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should create a local room and dispatch a view room event", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > does not return a leading 0 for single digit days", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove an email address", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications when event does not have notify push action", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if no rooms are open", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of another user", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > dispatches reply event on click", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display a connection error when getting login flows fails", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes as normal if the poll is ended", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > reconnects after disconnect in video rooms", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should abbreviate to host if empty pathname", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last month", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes ICE fallback preference through widget URL", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > warns when trying to make an encrypted room public", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete if secrets not cached locally", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions previousEvent is falsy", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should call createCrossSigning when startInitialCryptoSetup is called", - "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the default when the input is not a number", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores trailing `:`", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing backslash", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons in reverse order when room can previewed", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders spinner while device is loading", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 1 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for redacted event", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by name", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > clicking toggle calls onDeviceExpandToggle", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > should render", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption info panel without pending verification", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should render Date separators for the events", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test user mentions", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should make request complete authorization code grant", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should maintain pointers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > can change the parent hook state when required", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves capabilities via module api", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should remove fresh login flag from session storage", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > should remove the room from the store on unmount", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > does not show a dot if the level is activity and hideIfDot is true", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should support unchecked by default", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > status > updates component when event status changes", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > spaces contain dms which you have with members of that space", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account true", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > without requests to join > renders a paragraph \"no requests\"", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > mx-reply is stripped", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should intercept clicks with a ViewUser dispatch", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should try to start dehydration if dehydration is enabled", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not override an existing account event data", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > closes menu if space changes from under it", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > reflects the phase of the current room", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > default error code mapper maps error codes correctly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 3 (unknown or deleted device)", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are pinned", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message if the call was redacted", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should not mangle default order after filtering", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > creates beacon info event on submission", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should warn when space is not public", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (query pos)", - "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > thread context > should pre-populate a thread relationship", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the primaryEntityId if the search term was a permalink", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a user permalink", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should strip v prefix from versions before comparing", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when destroy is called", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > should return liveData from VoiceRecording", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > honours the hour format setting", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Bubble correctly", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month, date, year when activity is in a different calendar year", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should encrypt the file if the room is encrypted", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking cancel button from share type screen closes dialog", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches words only by default", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates if there are unsent messages", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables individual buttons based on definition.disabled", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if that is selected", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > calls onChange on click", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should return 0 for values that cause a division by zero", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show ignore or direct message buttons when member userId matches client userId", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase typed in", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room has only one joined member", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces enabled and wk forces disabled encryption", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room using values set from ForceRoomExportParameters", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is same day as current day", - "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > revokes permissions", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = true", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_declined", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should not call onSend when Enter is pressed", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", - "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > should show edit button if we are the sender and can post an edit", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and clicking \u00bbSign in instead\u00ab > should call onLoginClick()", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a call is transferred", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if the user has chosen to disable key storage", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens space settings when space settings option is clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should send a message when the content is modified", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show react button when we cannot react", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > no mentions", - "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns m.location uri when available", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders invite message when invite email mxid match", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom out on zoom out click", - "test/unit-tests/Notifier-test.ts::Notifier > setPromptHidden > should persist by default", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbblacklistUnverifiedDevices\u00ab", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display a dialog if password change succeeded", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the room name for notifications", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > creates local notifications event after a non-cached sync", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested blockquotes", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should not contain the least recently accessed items", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the start of the timeline", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an event in another room with the label \u00bbMessage in Room 2\u00ab", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return empty string when given empty list", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread notification badge", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > should add new DM Invites to the People Space Notification State", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns the event for a location event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should allow silencing an incoming call ring", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays toast while uploading avatar", - "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > returns undefined if neither prefix is present", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > stops existing live beacon for room before creates new beacon", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes subsequent positions", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but rel_type does not match THREAD_RELATION_TYPE.name", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when cross signing and secret storage are ready", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the last item should work", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a live beacon that does not have a latestLocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > avoids cycles", - "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly without an opened room", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should be ok if sync store and a rust crypto store", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > still shows an empty badge if hideIfDot us true", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > waits for messaging when connecting", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders custom user identifiers in the header", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to SSO login", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > emits filter changed event when updateSpace is called even without changes", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > renders options menu", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should spot a signed device", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > renders radios correctly when no value is provided", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for only terms that aren't already signed", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > emits an Update event on marked unread room account data", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > catches an error from localstorage", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return true for Room", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999999 as 10B", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is disabled", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders activeTabId tab as active when valid", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should reset font on Action.OnLoggedOut", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll that I have not voted in", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > handles invalid bounds", - "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders children with map renderProp", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when using itemLimit", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false if the objects are the same but different pointers", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should not fire callback which was added during a dispatch", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org?via=elsewhere.ca", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > getRoomIds should return the valid room Ids", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection cursor is not inside a text node", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should create and start new matrix client with credentials", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > should render as expected", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not jump to date if we already switched to another room", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > people", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a redacted event", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards pin drop event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested formatting", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone XS Max; iOS 15.2; Scale/3.00)", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > creates a loud notification", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true when the event for a thread receipt can't be found", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return true for Room", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not display a redacted edit", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an unencrypted room > should show the expected texts", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when audioNotificationsEnabled setting is truthy", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect when the event is not outdated", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should allow setting an identity server", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return false for expired items", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match basic key combo", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not add A-Element-R label if not rust crypto", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page with correct error when login state is not found", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: @userMention", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and feature_dynamic_room_predecessors is enabled > should pass the setting to findPredecessor", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > retry button retries stop sharing", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > shows a spinner when data is null", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message and a load more button when not at end of timeline", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a space room", - "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new email address", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with plain text description", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if there is no room", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should not show 'no results' if we have results to show", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastClone > should break pointer reference on source array", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for all if percentage is 100", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains dm rooms", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the new recovery method dialog", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a specific event", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > user pill uses matrix.to", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Unknown param", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated WEBP", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format word at caret position at beginning of new line without previous selection", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should search and select a user timezone", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should fail to save, load, and delete from a non-existent table", - "test/unit-tests/components/views/location/Marker-test.tsx:: > uses member color class", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time left > should not call stop", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect labs from settings store", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > renders", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > should not send receipts again", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds decrypted events asynchronously", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders error message when update fails", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when the quick settings are open > should not render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should block Ctrl/CMD + k shortcut", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts notifications type", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should allow to invite multiple emails to a room", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Appends a room when you join", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999 as 100K", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > wysiwyg correctly persists state to and from localStorage", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when clicking start a voice message > should try to start a voice message", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can create email pushers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > does not change parent hook state if suggestion is null", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 2 days ago", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon owner mxid as beacon name for a beacon without description", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders tabs correctly", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show widget as pinned", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should create a private room", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the change recovery key panel when the user clicks on the change recovery button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > renders in german", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat three arrays", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should send a message when Ctrl+Enter is pressed", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > can change joining calls power level", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup version", - "test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx:: > calls setAvatarUrl when a file is uploaded", - "test/unit-tests/modules/AppModule-test.ts::AppModule > constructor > should call the factory immediately", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after the first end poll event", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > refreshes beacon liveness monitors when pagevisibilty changes to visible", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Percent-encoded param value", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > renders buttons", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > does nothing on click when a beacon has no location", - "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > Public room results", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate e2ee URL previews on a fresh login", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not prompt ask to join", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders handles empty tags", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect user id", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until event older than history period is reached", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens invite dialog when invite option is clicked", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds votes from multiple people", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should unpin the event", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Image", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be ok if MigrationState greater than `NOT_STARTED`", - "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly with an opened room", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general tab if initialTabId tab cannot be rendered", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static PNG", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when supported", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > does not update the timezone when userTimezonePublish is off", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget with stickyPromise > should wait for the sticky promise to resolve before starting messaging", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no room", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest valid unknown MXIDs", - "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotReachable", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to custom value when custom input is blurred blank", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > sets map center to centerGeoUri", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > auto-approves OIDC requests for element-call", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > fails if the supplied URI is empty", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show password and confirm password fields in separate rows", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are missing", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > does not treat a command outside the first text node to be a suggestion", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is not opened on the pinned message list", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a beacon with live property set to true", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should move a widget within a container", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create space dialog on add space button click", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create loud notification when event does not have sound tweak in push actions", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we display the banner", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested unordered lists", - "test/components/views/dialogs/ModalWidgetDialog-test.tsx::ModalWidgetDialog > informs the widget of theme changes", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > renders in error mode when displayStatus is error", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should throw UploadCanceledError upon aborting the upload", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a string enum", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo error permissiondenied correctly", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at start of string", - "test/unit-tests/components/views/location/MapError-test.tsx:: > does not render button when onFinished falsy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers not allowed by ACLs", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show the invite button when canInvite is false", - "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without room-ID", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call lobby is viewed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Opens the old room on click", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > updates history visibility", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestCreation() > sorts beacons by descending creation time", - "test/unit-tests/utils/createVoiceMessageContent-test.ts::createVoiceMessageContent > should create a voice message content", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions after one publish error", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace in middle", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > should return false if the room has no actual room id", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > redacts related locations on beacon redaction", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have active class when enabled", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for the given relation", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the last message when the pinned event array changed", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes around other markdown", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate correct preview for message events in DMs", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should scope the location for a widget when setting OIDC state", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 59 minutes formats to 59m", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > handles event and calls sendContentListToRoom when data files are present", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val < 0", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room version", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for multiple paragraph", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when cross signing and secret storage are ready", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should has placeholder", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends notify event on connect in a room with more than two members", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders disabled invite button when current user is a member but does not have rights to invite", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a sub-space existing in multiple places in the space tree", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for 401", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > calls", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon fails consistently", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with no candidate servers", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should show loaders while 3pids load", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type ThreadsList dispatches show_thread", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = false", - "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback to paused from playing state", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in target space", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows react button when we can react", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > disables Element calls", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should hangup all legacy calls", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has changed category", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should log error and return to welcome page when userId lookup fails", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth enabled", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h2 with correct attributes", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the warning icon", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should switch to dark theme", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > should report to analytics on resize stop", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > renders an error when updating keywords fails", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with two winning answers", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block followed by text after a blank line", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with people", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no homeserver support", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.notice correctly", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should not encrypt the file if the room isn't encrypted", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout if the client is not viable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link with text", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > updates history visibility on toggle", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Even", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 6h and 10min formats to 6h", - "test/unit-tests/components/views/messages/DownloadActionButton-test.tsx::DownloadActionButton > should show error if media API returns one", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format link in front of new line part", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should not display a placeholder", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes back to default style when wire errors are cleared", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > calls on beacon click", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changes for difference in pointers", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text additions", - "test/unit-tests/Modal-test.ts::Modal > open modals should be closed on logout", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room running into the create timeout > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sending", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same but order different", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > disables buttons for rooms without send permissions", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the read receipt button calls dispatch with correct event_id", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is not required", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules when primary rule is disabled", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > delete() should not raise an error", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is an unknown room in the predecessor event, it should not count predecessor highlight", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves identity via module api", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onSelect on checkbox click", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should unpin the event if already pinned", - "test/unit-tests/createRoom-test.ts::createRoom > should strip self-invite", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested lists", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > overrides my other votes with my local vote", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > doesn't show a beta pill on normal invites", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming state updates to the widget", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > clear all notifications > clears all notifications", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has not changed category", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when user is not a member", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > persistOidcAuthenticatedSettings > should set clientId and issuer in localStorage", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Odd", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks late decryptions vs. undecryptable", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when encryption by default is disabled > should allow to invite more than one email to a DM", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if setting true and existing event is true", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for home -> space transition", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on element differences", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders when silence button when call is not silenced", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 1", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic to HTML", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onClick on device tile info click", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > handles when a room is not indexed", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return false", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should handle serverConfig updates correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a cancelable status", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return true for Room", - "test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx::ConfirmUserActionDialog > renders", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is not known", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is true", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at start", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if no thread in the room has notifications", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > italics, bold, underline and strikethrough render as expected", - "test/unit-tests/utils/export-test.tsx::export > tests the file extension splitter", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias changed", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > should clear the error on reconnect", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org", - "test/unit-tests/editor/history-test.ts::editor/history > undo after keystroke that didn't add a step is able to redo", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button does work as expected", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for unsent messages", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button emojis correctly", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render export type when set in ForceRoomExportParameters", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from PREPARED to SYNCING", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should start a DM when clicking a person", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account false", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > getUserIdsFromCompletions() should map completions to user id's", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is NaN", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should update the options from the opened dialog", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > notification level", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders success screen when export is finished", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should restore guest accounts when ignoreGuest is false", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect restricted rooms in v9 and v10", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is in the current space", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.RoomLoaded > updates viewRoomOpts", - "test/unit-tests/createRoom-test.ts::createRoom > should upload avatar if one is passed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not display the tooltip on mouse over when disabled", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isNew should return true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should not moving when the composer is filled", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles tag substitution with React function component and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > does not render back button on share type screen", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in home space", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (one of the pinned widgets)", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should not display an E2EIcon when the e2E status = normal", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites with a reason", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should handle loud notifications", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the approve button if the power level is insufficient", - "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from unedited event", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not raise an error on getPendingEvents (implicitly check for pendingEventOrdering: detached)", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #foo:localhost", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists starting later", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse mixed keyword notifications", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room export dialog on button click", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999 as 999", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with no args", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", - "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > requires registration when a guest tries to invite to a room", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly without beacons", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores duplicate :NUM (double port specifier)", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders check code confirmation", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders simple word changes", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks outside of code blocks", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu when there is no current device", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error with fallback message identity server config has fail error", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders tabs", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server even if a local suggestion gets filtered out", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims extracted from id_token in localStorage", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows timer if the call is connected", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a verified device", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction on a thread root", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > renders qr code login section", - "test/unit-tests/editor/history-test.ts::editor/history > keystroke that didn't add a step can undo", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the spinner when creating backup", - "test/unit-tests/components/views/voip/DialPad-test.tsx::when hasDial is true, displays all expected numbers and letters", - "test/unit-tests/utils/objects-test.ts::objects > objectExcluding > should exclude the given properties", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting changes", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns the latest location event for a live beacon with location", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for other input", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set on clients with no crypto", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > should not render the send button", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should continue to post login setup when no session is found in local storage", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should reuse initialised oidc client", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should not move if there is no room", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > surrounds lists with newlines", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads a specific state key", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for es-ES", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling on", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in another room", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > ordering of top container widgets should be consistent even if no index specified", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should close when selecting default homeserver and clicking continue", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should not let a slower response to an earlier query overwrite the result of a later query", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an unknown email > should show an email not found message", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display only the new message button", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders div with role button by default", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing phone numbers", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns true for an event with a renderer", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is an int in range", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = true", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if there is no other member in the room", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns false when users power levels have been changed by default settings", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user active after activity if no window focus", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should create and start new matrix client with credentials", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 18443 to 5h 7m 23s left", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a timeline update", - "test/unit-tests/components/views/auth/AuthFooter-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > shows the session ID and key", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on element differences", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button when user cannot react", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick no candidate servers when the room has no members", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > returns false if either argument is falsy", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if there's already a call", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally false", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown devices", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > renders recording playback", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > fails to update delayed events", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to ", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given 2 React children", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is undefined", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight when message's push actions does not have a highlight tweak", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show sent & received time on hover if passed", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders null when event does not have an extensible poll start event", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should display oidc-native continue button", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > activates the metaspace on click", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert new line into existing document", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with day of week and time when last activity is less than 6 days ago", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 7 (Sender's verified identity has changed)", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TF:h", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling an at-room completion", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > should open user device settings", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > updates join rule", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with notifications tab selected", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > shows the autocomplete when text has @ prefix and autoselects the first item", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time is up > should not call stop", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with 0 capacity it should raise an error", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not close settings if account not deactivated", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description if we choose it", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > returns early if current editorRef is null", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should convert HTML entities", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets export type on change", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the device keys", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > succeeds when no synced rules exist for user", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and '.m.room.message' are defined, uses the value", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should set fresh login flag in session storage", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should moving when the composer is empty", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Odd", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon with location publish error when clicked", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > destroys beacons", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses serverName from props", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for ES", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests an 'unread' ! if there are unsent messages", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity is in verification violation", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates the user has been invited to a channel", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notification type", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at start of single line", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls kick on deny", - "test/unit-tests/settings/controllers/SystemFontController-test.ts::SystemFontController > dispatches a system font update action on change", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the export e2e keys dialog on click", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when there is no snooze in storage", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons for roomId", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation is unavailable", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with a content body", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for redacted poll start", - "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false if widget_build_url is unset", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return not available and call showNoUpdate when current version matches most recent version", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns default if notification level is Activity", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when we don't have any receipt for the thread", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > creates a pickle key with userId and deviceId", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content when map_style_url is misconfigured", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is no event, it should not send any receipt", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > logs error and resets state when updating guest access fails", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can close the bug reporter", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when props get changed", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should show a dialog", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should generate a thumbnail if one isn't included for animated media", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > unignores the user", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > does not render dropdown when no devices exist for type", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room settings on button click", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave()", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > encrypt > should round-trip", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders email mismatch message when invite email mxid doesnt match", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning resolves", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return true for Room", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is any other error, it should not report ready, displayname = MXID and avatar = null", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backslashes", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event to the widget if seen already", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should throw when no clientId in localStorage", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should place calls using managed hybrid widget if enabled", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > no-ops if there are no state events", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct > 1", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should create a new object", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > cancel button clears selection", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should work", - "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a ModuleSpinner", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on enter keydown", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when called with an empty array, it should return false", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > clears previous error and emits when stopping beacon works on retry", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the recovery method removed dialog", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > should link to predecessor room via MSC3946 if enabled", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > renders create space button when UIComponent.CreateSpaces component should be shown", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > updates the video room space when the room type changes", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards beacon location as a pin drop event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when a command is followed by other text", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind an email address", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show error view if failed to look up room alias", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > should resolve the promise after invoking the callback", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should render pin button", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should fallback to stored issuer when no client well known is available", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > and setting MessageComposerInput.showStickersButton to false > shouldnot display the button", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token in localStorage when idb fails to save token", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > suggests connecting session to key backup when backup exists", - "test/unit-tests/theme-test.ts::theme > getOrderedThemes > should return a list of themes in the correct order", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should lookup .well-known for homeserver without protocol", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the overlay timeline window", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (input pos)", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should not display the section when the user can not set the value", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two third-party invites", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames current session", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > navigates to location picker when live share is enabled in settings store", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders only enable notifications switch when notifications are disabled", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should change the layout when selected", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > initiates map with geolocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > shows chat effects on message sending", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to approve a request", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS are preloaded", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > renders dropdowns for input devices", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not add relations for a .messages or .effects category command if there is no relation to add", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > should return false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with plain text content", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if that is selected", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Verified", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should be enabled if config is set", - "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotConfigured", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should set logged in and start MatrixClient", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a live beacon that does not have a location", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known default for encryption setting", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a newline work", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when backup creation failed", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when cross signing is not ready", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct label", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing mention of said user", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain about weak passphrases", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open topic dialog when not clicking a link", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > submits location", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > reciprocates login", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist credentials", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is not 1 and translates with fallback locale", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested quotes", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > downloadFile > should download a file and return the blob", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should return empty array when the request is not possible", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns false when setting value is not true", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should be the default", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address and port", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return true for Room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > should return true from canSelfUpdate()", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are not granted", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > removes spinner when device fetch fails", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing enter selects the mention and inserts it into the composer as a link", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll create event when submitted", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking without a drag motion, it should pass the click to children", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should show call buttons in a room with 2 members", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > hides the push notification section when no pusher", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores trailing `:`", - "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an unknown room > should not update the account data", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the right > should return a position to the right", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if focusRoomSearch=true", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > shows the 'set up recovery' toast if user has not set up 4S", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status cancelled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally false", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed, added, and removed properties", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::getPowerLevels > returns an empty object when room.currentState.getStateEvents return null", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles rules with no conditions", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when error is ERROR_INVALID_HOMESERVER", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders loading state", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.invite=", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > runs the function passed in", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with no args", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is in secret storage", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK/SSK not cached", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders something if member.membership is 'invite' or 'join'", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return false for LocalRoom", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string does not exists at all and translates with fallback locale, attributes fallback locale", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects if the widget dies", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.archived=", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show view in room button when the event is not a thread root", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready false", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects a missed call", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > does not delete a device when interactive auth is not required", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option with selectedLabel", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders without description", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for an audio message event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:com (mostly for (TLD|DOMAIN)+ mixing)", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for image files", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes that arrived after an unauthorised poll end event", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 2 days ago", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 12 hour mode", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.canonical_alias", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > hides when group calls disabled", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > defaults to moderator for joining calls", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 144 hours ago", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor in the create event, it should count predecessor highlight", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after sync stops", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if not wrapped in a client context", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks containing markdown", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a matrix client context", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > should show the password input view", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for orphans -> all transition", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for space -> all transition", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows placeholder info if the call isn't loaded yet", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates multiple sequences of repetitions with other events between", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by notification state then alpha", - "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders without children", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room with a pending third-party invite", - "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > decodes audio data when not greater than 5mb", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a regular notification in the TAC", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > deduplicates diff steps", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders spinner while devices load", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor when reinitialised", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > removes personal information from static self location shares", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when UIComponent customisations disable room options", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length > B length", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should handle unknown user agent sanely", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should edit a simple message", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element description", - "test/unit-tests/editor/position-test.ts::editor/position > move first position backward in empty model", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when not expanded", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with stable m.location msgtype", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should not prepend https to input if it has it", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > should not report a status event if no changes", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > tracks participants in room state", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should initialise the rust crypto library by default", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can auto-join a room", - "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders marker correctly for self share", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders invalid_code", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useMyRoomMembership > should update on RoomState.Members events", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event that is not room message", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > shows a face pile for rooms", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy and altitude", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not call for suggestions with a null suggestion prop", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when WebGl is not enabled", - "test/unit-tests/editor/range-test.ts::editor/range > range replace across parts", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> space transition", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 3 > renders a paragraph with three names", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders collapsed events if events.length = props.threshold", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should open settings to the reset flow when 'forgot recovery key' clicked", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > contentType should return the VoiceRecording value", - "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sunday-Saturday in long mode", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should support custom clone functions", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > Should migrate existing login", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists to session history upon sending", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > is forcibly enabled", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty body should return null", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > translates a basic string and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct button when value is provided", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns a non-200 status", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should set and return container height", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > can return a single empty div in case where room.getMember is not falsy", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light-high-contrast theme if that is selected", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content without error style when map_style_url is not configured", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 0 and translates with fallback locale", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should order the room with the same notification level by most recent", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return true if all conditions are met", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of last line", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no left space", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > closes and displays error when geolocation errors", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should enable theme selection when system theme is disabled", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at start of string", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > renders event index information", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > updates history visibility", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint when configured", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to resource limit", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > when switching rooms in the all rooms home space don't switch to related space", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is a not a number", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > does not format pure white space", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll end events from a ended poll detail", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders without a beacon instance", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (explicit)", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders marker when beacon has location", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a known user not in the room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready without showing update when user registered in last 24", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > filters out non-room specific rules", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is defined", - "test/unit-tests/editor/range-test.ts::editor/range > range trim just whitespace", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests fully", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for Room", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_USER_DEACTIVATED", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes square brackets", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > opens message context menu on click", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds no calls", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > should return the value \"platform\".\"Electron.showTrayIcon\"", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should work when resolveThreePids raises an error", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when user does not have cross signing keys and server does not support cross signing", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > sends correct state event on click", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device with metadata", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Jitsi video room invites", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > sort emojis by shortcode and size", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > closes on close button click", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to consent", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > renders expected fields", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > retry button resets location publish error", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > should render as expected", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=busy", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > updates the UI when another session changes the local notifications", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for more users if percentage grows", - "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > defaults target and rel", - "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > opens modal on click", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > spoilers get injected properly into the DOM", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then sends it anyway", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user info", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > should show the expected texts", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should handle multiple parameters", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when there are no beacons", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders join button", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should launch a confirmation modal", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply to room mention", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > without filter", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if VoIP isn't supported", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and clicking \u00bbSign out of all devices\u00ab and \u00bbReset password\u00ab > should show the sign out warning dialog", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > does not render export format when set in ForceRoomExportParameters", - "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the question for a poll I created", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > renders world readable option when room is encrypted and history is already set to world readable", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not open the tooltip when hovering a link", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is rejected", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are missing", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider provides a ref to the dom element", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > updates component on decrypted event", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayNoTime > should return a date formatted for en-GB locale", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > handles the bot notice inversion correctly", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not render any own beacon status when user is not live sharing", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should store clientId and issuer in session storage", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > asks users to confirm when setting room to encrypted", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls invite on approve", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > allows forwarding a live beacon that has a location", - "test/unit-tests/favicon-test.ts::Favicon > should recreate link element for firefox and opera", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > closes and displays error when geolocation errors", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > does not set an initial screen in session storage", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should disconnect all calls", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails with permission error", - "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > opens the room inviter", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rerendering PiP content 1 > should not change the PiP content", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > activates the space on click", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is no room predecessor, getHiddenHighlightCount should return 0", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > and a room encryption state event > should return true", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should display an error when trying to continue with an empty homeserver field", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > inserts toast according to priority", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should keep RoomUpload's total and loaded values up to date", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > resets seshat", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders info from a previous event", - "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > uses the provided language", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when identity changes", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single Continue button if OIDC MSC3824 compatibility is given by server", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should cancel the dialog from within the dialog", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is falsy", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > custom user agent = Element Desktop: Unknown", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > on liveness change > renders stopped UI when a beacon stops being live", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > does not force a reload on sync unless the client is coming back online", - "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should return the current width of window, according to UIStore", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > including rooms", - "test/unit-tests/components/views/elements/RoomFacePile-test.tsx:: > renders", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > emit should forward the call to VoiceRecording", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with no args", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > does nothing on click if already active", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return the right result for known users", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > cancelling edit switches back to original display", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with inactive notice when last activity was more than 90 days ago", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > renders input with default value of false", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should show error modal when the verification request is cancelled with a mismatch", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for a visible event", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Incomplete if backup key not cached locally", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > does not render Add Space when user does not have permission to add spaces", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active after 10s of no activity", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > stops listening to account data events on unmount", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when crypto is not enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is # or @", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should return config from config.json", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand missing highlight.value", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on own actionable event", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto and new version", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > hasRecording should return true", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates an existing list based on the key", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases with no server component", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the main timeline", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale pt", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should dismiss toast when 'not now' button clicked", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite more than one email to a DM", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends several events when I click different options", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should make things rainbowy", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > remains connected if we stay in the room", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room ID", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = false", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with public join rules", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call event is redacted", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return true for Room", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for beacon locations", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of highlights", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are available", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > clears loading state when device deletion is cancelled during interactive auth", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > connect to call with ongoing session", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > clears filter from no results message", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 3 when notificationCountType is 3", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > spoiler", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows sending double-slash escaped slash commands correctly", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should reuse the result", - "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset without description", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for empty URL", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders non-beta labs settings when enabled in config", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > excluding rooms", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are available", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with unavailable error when geolocation is not available", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (12.9-inch) (3rd generation); iOS 15.2; Scale/3.00)", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing an opening square bracket work", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should pass via of the server being explored when joining room from directory", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for MatrixError M_NOT_FOUND", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display 'Continue' button on permission load", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses m.predecessor when it's there", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends encrypted messages", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > calls onFinished when cancel button is clicked", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > watches settings", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > starts watching position", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases without candidate servers", - "test/unit-tests/vector/routing-test.ts::init > should call showScreen on MatrixChat on hashchange", - "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > renders revoke button", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > navigates to the space home on click if already active", - "test/unit-tests/editor/history-test.ts::editor/history > push, undo, push, ensure you can`t redo", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should allow a user to paste a URL without it being mangled", - "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when previous version of message's push actions have a highlight tweak", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the socials if disabled", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should display the modern layout", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is enabled > should render the developer tools option", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and the playback proceeds > should render as expected", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom suggestion element when renderSuggestion() is defined", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > includes threads", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders non-default timeout as selected option", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should expand arrays", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > uses cached aggregated rooms", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with args", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should translate _t strings", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display the \u00bbPopout widget\u00ab button", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should display a caption when no threads are unread", - "test/unit-tests/editor/range-test.ts::editor/range > range on empty model", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists state correctly without replyToEvent onbeforeunload", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display label as placeholder", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > waits for other tab to stop during startup", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > start should forward the call to VoiceRecording.start", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should make correct request to register client", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if the given event is not a reply", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h1 with correct attributes", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends markdown messages correctly", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not have after create callbacks", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a group \"asking to join\"", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is not enabled > passes the flag in to getVisibleRooms", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #_foonetic_xkcd:matrix.org", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide read-marker at the end of creation event summary", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should not attempt registration when oidc native flow setting is disabled", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with no previously pinned messages", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should work for empty arrays", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return the intersection", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should throw upon non-20x code", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a button to open the room settings people tab", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) (5); Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text deletions", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should not start the DM", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders QR code", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens invite dialog on button click", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a 'Verify by emoji' button", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when only of the threads has a receipt", - "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should render a single upload correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: #roomMention", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows sending double-slash escaped slash commands correctly", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return true for Room", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 1", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is disabled", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on others actionable event", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, device not signed", - "test/unit-tests/components/views/messages/MFileBody-test.tsx:: > should show a download button in file rendering type", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render section when RoomHistorySettings feature is disabled", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load with an initially focused beacon", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@alice:example.com\u00ab should return false", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config succeeds but is empty", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with reference relation", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns false if device is unverified", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered correctly overrides setting", - "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows an avatar with globe icon and tooltip for public room", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.lowpriority=", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should fallback to normal login when client registration fails", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for poll start event", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to joined", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > disables play button while playback is decoding", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMemberCount > should update on RoomState.Members events", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > creates a new thread on reply in thread click", - "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly parses model", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should render spinner while app is loading", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > invoke > should invoke to every registered module", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide the read-marker at the end of summarised events", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return false for LocalRoom", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string with duplicate character", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with no arguments if cancelled", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a RoomMember should start a DM", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for a disabled feature", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > is hidden when no notifications exist", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns true", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > reset() > clears countseen and toasts", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog with submit debug logs option when non-networking error occurs", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > should render notificationState if one is provided", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label to the set of requested labels", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, PlusMenu add buttons are disabled", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should initialise oidc client from constructor", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > does not render unverified devices section when only the current device is unverified", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A > keys for B", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is not enabled > passes through the dynamic room precessors flag", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should show error if /publicRooms API failed", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > for a virtual room > should return return false", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns null for a non-location event", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by key", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the notifications panel", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with useRovingTabIndex", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > plaintext remains plaintext even when forcing html", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display a placeholder", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK not cached", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user removed", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should throw when room for message is not found", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw upon non-20x code", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up drafts", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when setup encryption toast has been dismissed", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the kick button calls Modal.createDialog with the correct arguments", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately when there were already live beacons", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > resolves with current location", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > disables form while device name is saving", - "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should match snapshot", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > declining the unknown user dialog > should only invite existing users", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room that is ready after a while > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to deny a request", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room IDs and via servers", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot approve", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 1 minute formats to 1m", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > shows an undecryptable warning", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from crypto-setup-extensions provided by a registered module", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for notification when forced", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display all the buttons when the menu is opened", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at previous top if given", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > sets device verification status correctly", - "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > render the release announcement and close it", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > disables calling if there's a jitsi call", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > catches errors when room is not found", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be decrypted", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for emote event", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > should render dialog", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should render", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the left > should return a position to the left", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should throw when query params do not include state and code", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is a float in range", - "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens without a pickle key", - "test/unit-tests/editor/position-test.ts::editor/position > move backwards crossing to other part", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button if forceVerification false", - "test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx:: > should open CreateKeyBackupDialog on primary action click", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to set up backup if there is no backup on the server", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for an unknown beacon id", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for File rendering context", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to true, it should short-circuit and return true", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room is not public", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should change the copy button text when clicked", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should revoke tokens when user is authenticated with oidc", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in public room", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is not a number", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up wysiwyg drafts", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > encloses the fonts by double quotes and sets them as the system font", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > fires favourite dispatch on button click", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > counts one unique vote per user", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes analyticsID through widget URL", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders error message", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > allows a community completion to pass through", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore.isUserAuthenticatedWithOidc is falsy", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi for large rooms", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (dm)", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays name edit form on rename button click", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > does nothing if given no room ID and not viewing a room", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown if there is an ongoing call but we are viewing the lobby", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add to selection on click of user tile", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should not mangle shift-enter when the autocomplete is open", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for emote event", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should react to value and disabled prop changes", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Prefers sender.name", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide cryptoSetup extension", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should send state=disable to API /widgets/set_assets_state", - "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information with url for non-electron clients", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > does not add double quotes if already present and sets the font as the system font", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should not show error modal when the verification request is changed for some other reason", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of first line which is empty", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does geolocation and sends location immediately when user has live beacons", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist login credentials", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return expected results when all response times similar", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should find Rooms", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to for multiline links", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Shows indent and unindent buttons when either a single list type is 'reversed'", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if nothing is open", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should not clear storage", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 2", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@b.org\u00ab should return false", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/webp", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.hangup", - "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for non-reply events", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows enabled when call member power level is 0", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-GB", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect logs", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without msgtype", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should not show restricted room join rule when upgrade is disabled", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should correctly handle getUserDeviceInfo() returning an empty map", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should work with empty queries", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving right", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails with a non-401 status code", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with a verified session", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing]() -> testing|", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > when MSC3946 dynamic room predecessors is enabled > should call getVisibleRooms with MSC3946 dynamic room predecessors", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should return usage if no args", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles tag substitution with React function component and translates with fallback locale", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > renders nothing when user has no live beacons", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button by default", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders bridges settings tab when enabled", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should look up userId using access token", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns unavailable for unavailable error", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters when parameters change during the timeout", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mentions only", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > not to send chat effects on message sending for threads", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have hover style when hovered and enabled", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 50", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > unpaginates", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to private", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > sets up position handler with correct options", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > resetConfirm should work with a cached account password", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > test with newlines", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a cached sync", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render an avatar or link when called with inMessage = false and shouldShowPillAvatar = false", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice\u00ab should return false", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room member", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when use system theme is truthy", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does not re-wrap if called multiple times", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for all terms & services if no account data", - "test/unit-tests/models/Call-test.ts::ElementCall > get > does not pass analyticsID if `pseudonymousAnalyticsOptIn` set to false", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > when an error occurs while setting an item the cache should be cleard", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > can change the parent hook state when required", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns falsy when no users have changed power level", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should ignore the MSC3812 dehydrated device", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val > 100", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides a single vote if I have not voted", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from experimental-extensions provided by a registered module", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should pass appropriate permalink creator for all rooms search", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns id of the event being replied to", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should attempt to register oidc client", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for an uknown user not in the room", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite a MXID and an email to a DM", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > creates account data event", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > renders beacon owner avatar", - "test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts::MatrixSchemePermalinkConstructor > parsePermalink > should strip ?action=chat from user links", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event if not in timeline", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a non-local room ID", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is more than max", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > does not crash when given a portrait image", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:bar.com", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > should request a new token if the old one fails", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > linkification get applied correctly into the DOM", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return an empty array on no matches", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 83 to 1m 23s left", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > joins room on primary button click", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a list of active polls when there are polls in the room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji when a word is selected", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > returns null for unknown events", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders error message when history update fails", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle serverConfig updates correctly", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should not clamp numbers in range", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > room mentions", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the release announcement", - "test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx:: > renders tab", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > cannot send delayed events with missing arguments", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly shows all the information", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when all orders are undefined", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverifiable device", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not pinnable", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should shrink arrays", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a null room", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send rust cryptoSDK superProperty correctly", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > highlightEvent > should dispatch an action to view the event", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > prepend text to existing document", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when not supported", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should ignore home shortcut if dialogs are open", - "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > should support setting a user timezone", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > other rooms are added to Notification States for all spaces containing the room exc Home", - "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 24 hour mode", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase pasted in", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called for a replaced event with new content should return the new content body", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 144 hours ago", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Odd", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalink via arguments", - "test/unit-tests/components/views/location/Marker-test.tsx:: > renders with location icon when no room member", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > updates device", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the success dialog when the key backup is finished", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > renders world readable option when room is encrypted and history is already set to world readable", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return the right result for known devices", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button on non-actionable event", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message and a thread without a reply > should render the message preview", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends markdown messages correctly", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag to if existing event is false", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > applies interactive class when tile has click handler", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999999 as 1B", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no right space", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 48 minutes, 59 seconds formats to 48m 59s", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: Threads > should display the pinned message badge", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isError should return true", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > button to accept terms is disabled if checkbox not checked", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on start()", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by last active timestamp", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on room event", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage with params", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > sets notification count when count is changing", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets flag if setting false and existing event is true", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should throw when created with invalid config for LastNMessages", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > works in conjunction with useSystemFont", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TT:h", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles guest users", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have never been online", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRooms if no completionId is present and completion starts with #", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add relation to message", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables the checkbox when there is no server support", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > clicking cancel button from location picker closes dialog", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders a file as the avatar when supplied", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was added", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string with duplicate character", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > favourites space does contain favourites even if they are also shown in a space", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should display or not placeholder when editor content change", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for other errors", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Returns null when the room ID contains no colon", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders nothing if member.membership is undefined", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores extra answers", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to a custom level", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return false for LocalRoom", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates support for desktop capturer", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > any markdown turns message into html", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if clipboard data is null", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > should allow filtering", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is undefined", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear in code blocks", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > opens poll history dialog on button click", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > handles when a muted room is unknown by the room list", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the spotlight when the search button is clicked", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle updating to a server with no supported flows", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to cancel a search", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should override hsUrl in creds when login response wellKnown differs from config", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is day before the current day", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders reject and ignore action buttons when handler is provided", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs with arrays", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hostnames with ports", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should skip to auto join", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events with custom parameters", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: /someCommand", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should close editing", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with an event on the main timeline and a later one in a thread > an unthreaded receipt for the later threaded event makes the room read", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor event, it should count predecessor highlight", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > does not render if user can neither approve nor deny", - "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display an error icon when in error", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns max values if content size is not specified", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays encrypted rooms as encrypted", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show cannot pin warning", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@\u00ab should return false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the threads panel", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles many users following the same sequence of memberships", - "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders with children", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > can change starting calls power level", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > bold within a word", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > does not display rooms with nsfw keywords in results when showNsfwPublicRooms is falsy", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while signing in", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is knock", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the setting is in a loading state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when user inputs any whitespace after the special character", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns undefined if notification level is None", - "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a label", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a pill with an unknown type", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > catches and logs errors while updating a rule", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders static remaining time when displayLiveTimeRemaining is falsy", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.server_notice=", - "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_name when resolveable", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :kiss", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user swapped", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render a spinner while loading", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near top edge of window", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when match system is selected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > showRoom > shows room", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a beacon with live property set to false", - "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should not accept emoji strings into type=plain", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Correctly tags rooms > renders Public and Knock rooms in Conferences section", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is accepted", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isCreated should return false", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect device id", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows ended vote counts of different numbers", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after un-voting", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > public room > shows a globe", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > toggles timeline in right panel on click", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should deduplicate a single array", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect device keys", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should work with hostnames with ports", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > and an e2e status it should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request fails", - "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should update MatrixClient's state when the setting is updated", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Odd", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons change live state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams is missing relation", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > preserves non-persisted widget on container move", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > logs and opens a dialog on a geolocation error", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose default theme if system settings are inconclusive", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders the push notification section when a pusher exists", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when cancel is clicked", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > meets room requirements if there are enough rooms", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links with emphasis are \"escaped\" correctly", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider renders children as expected", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops watching position when user has no more live beacons", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > sets topic", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Hides a verified dehydrated device", - "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Offline' for presence=offline", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > doesnt navigate in app when view in timeline link is ctrl + clicked", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to false when setting false", - "test/unit-tests/Reply-test.ts::Reply > stripPlainReply > Removes leading quotes until the first blank line", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon is not live", - "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows the presence indicator in a DM room that also has functional members", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > escapes angle brackets", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when identity server config has fail error and recognised error string", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders other sessions section when user has more than one device", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result is falsy", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was not fetched", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if room not public nor knock and the user cannot change join rules", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should not show spell check setting if unsupported", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render not display the tooltip when the release announcement is displayed", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with local, non-local and invalid votes", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > handles remote disconnection", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when editing with plain text", - "test/unit-tests/WorkerManager-test.ts::WorkerManager > should generate consecutive sequence numbers for each call", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines mixing paragraphs and line breaks", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of membership events quickly", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > turns html tags back into markdown", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread thread notification badge", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Element video room invites", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should return the profile", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates no support for jitsi screensharing", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to approve a request", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > returns false when no threads", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onKeydown/onKeyUp handlers for keys other than space and enter", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add space button when UIComponent customisation allows CreateSpace", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onChange handler", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :golf", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should re-check the encryption state and displays the correct panel when the user clicks cancel the reset identity flow", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing when clearing if flag is false", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with an empty array, it should return false", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > should log the invalid content", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns a pretty list without hasMore", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > and a new event appears > should emit the new event", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a message with the correct fallback", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > looks as expected", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show full date & time on hover", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders back button from location picker screen", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects call type", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user without timestamp > and the current user adds a Jitsi widget > should not remove the last widget", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should call onError if setting visibility fails", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if you're alone", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return false for LocalRoom", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > backslashes", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns undefined for an unknown setting", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room added", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders leave option when user does not have rights to see space settings", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :boat", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > registers service worker", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = false > should invite all users", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with markdown empasis in them are getting properly HTML formatted", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic to HTML", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > getRoomIds should only return the valid items", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes underlying cause error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should pass through to the handler if setting is not disabled", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Watches the feature flag setting", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should recalculate all rooms when the client is ready", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should recover from a server exception", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of unreads", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > should return false", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window when it starts with no overlay events", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'key storage out of sync' toast", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type Notification dispatches view_room", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when participants change", - "test/unit-tests/createRoom-test.ts::createRoom > sets up Jitsi video rooms correctly", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate added properties", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is connected", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should not allow to unpinall", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > adds ambiguous key to all ids with non-unique names", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a #roomMention is followed by other text", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with html content", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > correctly emits events for metaspace changes during onReady", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with delete", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render anything if the type cannot be detected", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > renders text and placeholder correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.recent=", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display an error if password change failed", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an expired beacon", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > waits for messaging when connecting", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays error when playback decoding fails", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place and key in same place in insertion order", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is true if the current room is open", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > does not re-sort on possible mute change when room did not change effective mutedness", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should view in the timeline", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error from the event index", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if no room", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should display public rooms when searching", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should have an SDK-branded destination file name", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > getRoomIds should return an empty list", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should do post-logout cleanup", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 4 when notificationCountType is 4", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when UIComponent customisations disable room and space creation", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > handles the happy path", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the room name when the room has a valid completionId", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > room pill", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and validating the link from the mail > should display the confirm reset view and now show the dialog", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking with a drag motion above the threshold of 5px, it should not pass the click to children", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > when there are cached values and membership updates > and membership events with the same values appear > should not invalidate the cache", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Enabled if backup key is cached locally", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should gracefully handle invalid MXIDs", - "test/unit-tests/createRoom-test.ts::createRoom > sets up Element video rooms correctly", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches case-insensitive", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same but order different", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > should not show a shield for previously-verified users", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > handles errors fetching session key", - "test/unit-tests/utils/WidgetUtils-test.ts::getLocalJitsiWrapperUrl > should generate jitsi URL (for defaults)", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops live beacons when geolocation permissions are revoked", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.member", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the events", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns null when setting is not incompatible", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should show the \u00bbinvite anyway\u00ab dialog if the profile is not available", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return null for 2 targets without a room", - "test/unit-tests/utils/exportUtils/exportCSS-test.ts::exportCSS > getExportCSS > supports documents missing stylesheets", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) electron/1.0.0 Chrome/53.0.2785.113 Electron/1.4.3 Safari/537.36 = Element Desktop: Windows", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Odd", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns multiple results in order of search string appearance", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > creates a modal on openDesktopCapturerSourcePicker", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders loading message", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when calling with video = false and an audio device is available > should return the audio stream", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword with same actions as existing rules when keywords rule is off", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should allow keyboard navigation using arrow keys", - "test/unit-tests/vector/init-test.ts::showError > should match snapshot", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert in middle", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should move if there is a room", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should support removing unknown keys", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return valid content", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > unpinAllEvents > should unpin all events in the given room", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 4 pinned event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is false", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > submits location", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > clears error message for notification rule on retry", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month and date when last activity is more than 6 days ago", - "test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx::FeedbackDialog > should respect feedback config", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/SSK not cached", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > joins the call and closes the toast", - "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders presence indicator with tooltip for DM rooms", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not do any geolocation when user has no live beacons", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for an enabled feature", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle a too-short body", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not report a failure for an event that was reported in a previous session", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with backspace", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return false for default level -50", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders expired", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing for muted channels", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for PL", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with multiple previously pinned messages", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding actions", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return false for LocalRoom", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with custom options", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > share dialog has correct link in an unencrypted room", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new email addresses", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders the first 20 answers if 21 were given", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is provided > renders a link to open the room settings people tab", - "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > on sets signed device isolation mode", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to invite", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > does not rename session or refresh devices is session name is unchanged", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in rooms larger than 2 members", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns the event for a room message", - "test/unit-tests/editor/history-test.ts::editor/history > history step is added at word boundary", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > should render a room without a message as expected", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > popCard > removes the most recent card", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > prefers size stashed in LocalStorage to the defaultSize prop", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status encrypting", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > keeps sharing positions when geolocation has a non fatal error", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return January-December in long mode", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > focuses on beacon location on sidebar list item click", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is cached", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > is silent about the top answer if there are no votes", - "test/unit-tests/UserActivity-test.ts::UserActivity > should extend timer on activity", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should consider pointers when testing values", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns an empty map when no member can be found", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles text in tags and translates with fallback locale, attributes fallback locale", - "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on string enums", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns an empty object when no event exists for the device", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits for events other than the latest one", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display the recovery key", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should enable encryption toggle and disable field when server forces encryption", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > renders an ended poll", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hours when less than 24h formats to 2h", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Public and Knock rooms in Conferences section", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > does not change parent hook state if suggestion is null", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for removed room rules", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles noisy", - "test/unit-tests/theme-test.ts::theme > enumerateThemes > should return a list of themes", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should update integrations provisioning on toggle", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID without protocol", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have disabled class when disabled", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if there is no end event", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 3 days, 6 hours, 48 minutes, 59 seconds formats to 3d 6h 48m 59s", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > if calling .invite throws something strange, show default error message", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label File with size", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is not bridging messages to any platform", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the topic", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if user has no encrypted rooms", - "test/unit-tests/vector/routing-test.ts::onNewScreen > should replace history if stripping via fields", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if installed WPA", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders additionalButtons", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is null, shows disabled read receipt button", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should render the custom theme section", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows block button when member userId does not match client userId", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given no room ID and not viewing a room", - "test/unit-tests/createRoom-test.ts::createRoom > doesn't create calls in non-video-rooms", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first containing space for room", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel and retry button for an event with NOT_SENT status", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles no spaces", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en-GB", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles the client being stopped", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change only the level of someone with a lower level", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when UI customisation hides invites", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > renders nothing when there is no call", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from the current room", - "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should display room member list when payload has a falsy event", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll edit event when editing", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > createVoiceMessageRecording should return a VoiceMessageRecording", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > changing the filter clears selection", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > should show topic modal if no args passed", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should display an edited pinned event", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > disables submit button until geolocation completes", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > removes beacon event id from local store", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display only the home and preference buttons", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when initial sync is not complete", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > clears widget persistence when destroyed", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to connect if the widget returns an error", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for all of them, it should return false", - "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the number when it is a number", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render initial tab when initialTabId is set", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders voip settings tab when enabled", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > when clicking the pill > should dipsatch a view user action and prevent event bubbling", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > remains connected if we stay in the room", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a subspace that was being viewed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows an error if there are no via servers", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should not show knock room join rule when upgrade is disabled", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :hand", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick prefer candidate servers with higher power levels", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > creates a thread when needed", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > stops sharing on stop button click", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > fits map to bounds", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should be in loading state when checking the recovery key and the cached keys", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = true", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > renders in error mode", - "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > updates the call's skipLobby parameter", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > should send the new password and show the click validation link dialog", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when events sender cannot be found in room state", - "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > renders", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Closes the dialog when the form is submitted with a valid key", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is just a room", - "test/unit-tests/editor/history-test.ts::editor/history > overwriting text always stores a step", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with React function component", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.invite=", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when ctrl+Enter is pressed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if there is a command surrounded by text", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no e2ee well known", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > no mentions", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'account'", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot deny", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return true if visibility customisation returns true", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > requests notification permissions and returns result", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests reduced", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the other member's avatar URL", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > throws when room is not found", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be downloaded", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph with spurious breaks around it in selected range", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a @userMention is followed by other text", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending edit", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should noop when selecting no file", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be enabled for developerMode", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should not render manage integrations section when widgets feature is disabled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not installed WPA", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > renders merged timeline", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should fetch cross-signing and device info", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally true", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow 3pid changes when capabilities does not have 3pid_changes", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline where toStartOfTimeline is true", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes font settings through widget URL", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when enabled and room join rule is not knock", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.2 Explicit CRS and accuracy", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = false", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing markdown", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 2 > renders a paragraph with two names", - "test/unit-tests/components/views/location/Marker-test.tsx:: > does not try to use member color without room member", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should add a custom theme", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added from A->B", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 6.0; rv:40.0) Gecko/20100101 Firefox/40.0", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should create keys if they do not exist", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in the room > should render as expected", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks participants", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > is created once in SdkContextClass", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a candidate server for the highest power level user in the room", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the set up recovery key when the user clicks on the set up recovery key button", - "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a check icon when in success", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of highlights", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > handles when room is a space", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should remove the last added selection when backspace is pressed in empty input", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons for roomId", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should render as expected", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window to get enough overlay events", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should disable theme selection when system theme is enabled", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon has no location", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for GB", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (without plain text around)", - "test/unit-tests/components/structures/LargeLoader-test.tsx::LargeLoader > should render the text", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an expired beacon", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should throw when pinned event has no sender", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when group call is already connected", - "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding translations", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should replaceEmoticons properly", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment cannot be fetched", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3600 to 1h 0m 0s left", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with sidebar tab selected", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse regular keyword notifications", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with session manager tab selected", - "test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx:: > renders", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > does not try to publish anything if there is no known position after 30s of inactivity", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > should render nothing when room has no error or unsent messages", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should handle there being no keyword rules", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > render QR then back", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not disable share button if terms accepted", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with public room filter", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action when update not available", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that My filter for ThreadPanelHeader properly renders Show: My threads", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > calls onClick", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as read", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog if backups and recovery are working", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if now guest spa link is configured", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > without encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentToRoom when parsing is successful", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect unstable as unsupported", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config is fetched from a file and is empty", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed properties", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > filters the rooms", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > removes keyword", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return n-parent variant", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is required", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > should create an encrytped room for 3PID targets", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show a spinner before the promise resolves", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should move calls between rooms when remote asserted identity changes", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > disable calls in large rooms by default", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure existing prompt stays even if a new violation with lower lexicographic order detected", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches all chars with words-only off", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the extensible event text when fetching the start event fails", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is enabled > Passes the dynamic predecessor flag to getVisibleRooms", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3623 to 1h 0m 23s left", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > Can call onNotReady before onReady has been called", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for non-live events (scrollback)", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > renders the theme choice UI", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were unpinned", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should return empty string if passed falsey", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child rooms", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should apply to word range is within if length 0", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls getCommand for a message starting with a valid command", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > asks for confirmation when resetting seshat", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > watches device client information setting", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle to all rooms search", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for people -> all transition", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays error when device name fails to save", - "test/unit-tests/components/structures/SpaceRoomView-test.tsx::SpaceRoomView > SpaceLanding > should show member list right panel phase on members click on landing", - "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders plain text link correctly", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle large numbers of hidden events quickly", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > should render welcome page after login", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist credentials", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the JoinRuleDialog on click with private join rules", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbResend\u00ab > should should resend the mail and show the tooltip", - "test/unit-tests/editor/parts-test.ts::editor/parts > should not explode on room pills for unknown rooms", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added an alt alias", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a maximum of 3 candidate servers", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > has() should return false", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by presence state", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > opens context menu on create space button click", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns live beacons when user has live beacons", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when an event has no sender", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hosts", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching threepids fails", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts literal HTML topic to HTML", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with 2 members", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > swaps to the replied event room if it is not the current room", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > triggers the secondary action callback", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a feature flag changes notification state", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the thread root id when provided", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Enabled", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for redacted event", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should displays votes on polls not found in local timeline", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/USK not cached", - "test/unit-tests/editor/range-test.ts::editor/range > replace a part with an identical part with start position at end of previous part", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > expands current session details", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with no votes", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS is loaded during pooling", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Even", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > userProfilesStore should return a UserProfilesStore", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept repeated TLDs (e.g .org.uk)", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a read receipt update", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isCreated should return true", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for @room", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not render device verification cta when current session is not verified", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > does not call onClick when clicking device tiles actions", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should throw if the token was persisted with a pickle key but there is no pickle key available now", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is not equal to true", - "test/unit-tests/components/views/location/Marker-test.tsx:: > renders member avatar when roomMember is truthy", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should go home on home shortcut", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom in on zoom in click", - "test/unit-tests/Terms-test.tsx::Terms > should not prompt if all policies are signed in account data", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false to space", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if client cannot send state event", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a local room", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are added", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should return the expected resizer distributions", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > pins event on pin option click", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is same day as current day", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with react node", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > rejects invite on secondary button click", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > shows Join button if the user has not joined", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should recover from a server exception", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > gives up", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to invited space", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for ClipboardEvent", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should display user profile when searching", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it running into rate limiting > should show the rate limit error message", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Insertions into empty skip list works", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when the content has changed", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > emote", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > handles negative numbers", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.1 Simple 3-dimensional", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains orphaned rooms", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > calls onClick-callback on additionalButtons", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > displays rooms with nsfw keywords in results when showNsfwPublicRooms is truthy", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a verified device with no metadata", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit is max", - "test/unit-tests/customisations/Media-test.ts::Media > should not download error if server returns one", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Does not remove old room if there is no predecessor in the create event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a phone number is dialled", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hosts", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with no \"others\"", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayRescale > should rescale", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > removes itself when user stops having live beacons", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple variable substitution", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute modifications", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver fails liveliness check", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not show the autocomplete when room is undefined", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was removed", - "test/unit-tests/utils/numbers-test.ts::numbers > sum > should sum", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu without unpin and delete", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected attributes when avatar url for room is truthy", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders join button", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows an active call with back and leave buttons", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return true for Room", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with home behaviour", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Should call wysiwyg function on button click", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should allow overriding individual fields of sub-objects", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not installed > renders link to install seshat", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should render", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > hides the out-of-sync toast when one of the secrets is missing", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders ignored users tab when feature_mjolnir is enabled", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > translates a basic string and translates with fallback locale", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving more right when all is undefined", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing by default", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999999 as 100M", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > restarts publishing a beacon after resetting location publish error", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts a single vote as normal if the poll is ended", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes underscores", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 3 mins", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onSend when Enter is pressed", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic with emoji to HTML", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption with expected raw error for a visible event", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should upload the file and trigger the upload events", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add an email address", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders a spinner", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders without a cancel button if forceVerification true", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders guest access section toggle", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoom > dispatches Action.JoinRoomError and Action.AskToJoin when the join fails", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with default values > should return the default config", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > Displays edited content and new answer IDs if the poll has been edited", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a fallback when there are no locations", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > should not blindly group 3pid invites and treat them as distinct users instead", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds ongoing calls that are created by the session manager", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits no event when a room has no unreads", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send reply to html message", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a falsey value", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOrFetchProfile > should return a profile from the API and cache it", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOf > should return the correct positioning", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should clear the requested state when the button tooltip is hidden", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should ask if user wants to unban user if they have permission", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term is a permalink and the primaryEntityId is null", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static GIF", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > renders in error mode", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > sets the current time in local storage", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should return empty string if passed falsey", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > respects defaultSize prop", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English without item limit", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to true", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a verify button when the encryption is not set up", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Even", - "test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts::viewUserDeviceSettings() > dispatches action to view session manager", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string does not exists at all", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct JSX message when room join rule changed to restricted", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/foo_bar:server.uk", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is disabled if there is an other ongoing call", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks outside of code blocks", - "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected with detail content", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after component is loaded", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should render HH:MM", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return the app avatar URL", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo timeout error correctly", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking back button from location picker screen goes back to share screen", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > room invite gets added to relevant space filters", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should disable share button until a source is selected", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show banner on hover", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders nothing if poll has no answers", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > values() should return an empty iterator", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > renders expected fields", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > renders addresses section", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from unverified devices", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > hides the bold icon when the settings is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a command inserts the command", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing escape closes the autocomplete", - "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 12 hour mode", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a beacon that is not live", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only functional room members > should return an empty list", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match advanced ctrlOrMeta key combo", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should import exported keys on submit", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for PNG files which cannot be parsed but successfully thumbnail", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > does not render if the room join rule is not knock", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to knock", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when a deny request fails", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should start a DM if the profile is available", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders invite message", - "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > does not show filter container when disabled by UIComponent customisations", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle code blocks", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting is false and space changes to a meta space", - "test/unit-tests/audio/Playback-test.ts::Playback > initialises correctly", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should render the count of results", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should cache the error and result", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores end poll events from unauthorised users", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should throw error if unregistering unknown token", - "test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx:: > renders correctly when user has no ignored users", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed message events", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns forced value when setting is incompatible", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during protocol negotiation", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders a verified device", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is larger than max", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > uploadFile > uploads a file", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > search for users in the identity server", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > cancelUpload > should cancel in-flight upload", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known does not promote encryption > should return false for a DM room with one third-party invite", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats with seconds", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to the beginning", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=online", - "test/unit-tests/integrations/IntegrationManagers-test.ts::IntegrationManagers > getOrderedManagers > should return integration managers in alphabetical order", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > @room pill", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a Room", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when an approval fails", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver doesn't offer any supported login flows", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > saves client information after setting is enabled", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if the homeserver provides no TURN servers", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should have light theme selected", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > type in empty line", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders emoji and upload buttons in wide mode", - "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders link correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.suggested=", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should change the system theme when clicked", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > renders when the last message is an undecryptable thread root", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when beacon has no related locations", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, MainMenu adding buttons are hidden", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > should return false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should display the tooltip on mouse over when not disabled", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when the timezone is changed", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > translated correctly when plural string exists for count", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can call when you're two in the room", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > parses a typical pushrules setup correctly", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isNew should return false", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when calculatedValue is falsy", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > disables guest access toggle when setting guest access is not allowed", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :+1", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > converts legacy location events to pin drop shares", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly renders toast without a call", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound url if no name", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with negative capacity it should raise an error", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders invite message with invited email", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show multiple SSO buttons if multiple identity_providers are available", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > cancels changes", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unsupported_protocol", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > updates include attachments on change", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a highlight notification in the TAC", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add mentions that were added in the edit", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with an empty array, it should return true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isError should return false", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > catches an error from localstorage and returns false", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > disables all rooms in home setting when home space is disabled", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values", - "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been denied", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > should return a toast once one is displayed", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > does not display filter description when filter is falsy", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 0 seconds formats to 0s", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return full time & date string otherwise", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to deny a request", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > Signs out of current device", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses hs url hostname when serverName is falsy in args and config", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp high numbers", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > opens the panel in the given room with the correct phase", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when no session data is found in local storage", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should show error when an error occurs", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted local room > should show the expected texts", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when Shift+Enter is pressed", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device without metadata", - "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new DM room > should update the account data accordingly", - "test/unit-tests/utils/export-test.tsx::export > should export images if attachments are enabled", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > resumes applying formatting to the rest of a message after a link", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without msgtype", - "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > @room pill turns message into html", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should create new matrix client with credentials", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure lexicographic order for prompt", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > on location updates > updates last updated time on location updated", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was tracked but not reported in a previous session", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > ignores thread updates for unknown threads", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > an unthreaded receipt for the event makes the room read", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > renders export format with html selected by default", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > sends an unthreaded read receipt when the Mark All Threads Read button is clicked", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sent", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > stop should return a copy of the data buffer", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is defined", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/apng", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 2 when notificationCountType is 2", - "test/unit-tests/UserActivity-test.ts::UserActivity > should return the same shared instance", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a power level combobox", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and .events_default are undefined, returns false", - "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should group appropriately", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when roomId is falsy", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > MemberListView > Memberlist is re-rendered on unreachable presence event", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbRightPanel.phases\u00ab", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.third_party_invite", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when one message was pinned, and another unpinned", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when no beacons have locations", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device name", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders a verified device", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after two minutes > should not remove the last widget", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and updating the server config > should show the new homeserver server name", - "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with react description", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > selecting own location share type advances to location picker", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render a single pinned event", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with room name", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip the /me prefix from a message", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return false from VoiceRecording", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of an unknown screen", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for only services with un-agreed policies", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns false for space", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > strips /me from messages and marks them as m.emote accordingly", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, west of meridian", - "test/unit-tests/utils/export-test.tsx::export > checks if the icons' html corresponds to export regex", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes asterisks", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100", - "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the sender and question for a poll created by someone else", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders the default context menu", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a number enum", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not try to remove client info event that are already empty", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to connect if the widget returns an error", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with preferences tab selected", - "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Unreachable' for presence=unreachable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should clear textbox content when clear is called", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single non-empty item are still markdown", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > does nothing if the room has no phase to open to", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > gets TURN servers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in the middle of a word", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should return the custom config", - "test/unit-tests/theme-test.ts::theme > setTheme > applies a custom Compound theme", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > shows a preview with us as the sender", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.suggested=", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with many \"others\"", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > allows overriding native context menus", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > saves an empty session display name successfully", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should toggle a selected item when a suggestion is clicked", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FT:h", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag if event doesn't exist", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not focus when disabled", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when one of the predicate return true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle both displayname and avatar changing in one event", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should close on cancel", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for words", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return the error if there was one", - "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > renders the room options context menu when UIComponent customisations enable room options", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct < 0", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > shows pin option when pinning feature is enabled", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables OK button when labs flag is toggled to enabled", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > toggles all rooms in home setting", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a blank poll", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room removed", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return true + invite event for a DM room with one third-party invite", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > calls onChange when a file is uploaded", - "test/unit-tests/editor/model-test.ts::editor/model > emojis > regional emojis should be separated to prevent them to be converted to flag", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if you have no friends and cannot invite friends", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added multiple alt aliases", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a space", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should copy the layout to the room", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > cannot be disabled", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does not show context menu when right-clicking", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should support pasting one username that is not a mx id or email", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false if visibility customisation returns false", - "test/unit-tests/favicon-test.ts::Favicon > should create a link element if one doesn't yet exist", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should warn about self demotion", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return true for Room", - "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > calls onChange handler on selection", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > should return the profile from the API and cache it", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > returns early when suggestion is null", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect modernizer", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should show the device settings", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V1 font size to V3", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should call Navigator::setAppBadge", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user knock has been denied", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is falsy", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a non-standard pickle key > should create and start new matrix client with credentials", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 6 (Not encrypted)", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns 0 when expiry has already passed", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > updates thread previews", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with reference relation", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to world_readable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in the middle of a word", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has been started and there is a profile, it should return the profile display name and avatar", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should warn and do post-logout cleanup anyway when logout fails", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > updates marker position on change", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for an MXID permalink", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have focus", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > combines the keyChar and text of the suggestion in the query", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show edit button when we cannot edit", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends ring on create in a DM (two participants) room", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command is not successful", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders space settings option when user has rights", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to top level space", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should return accessToken, configured homeserver and identityServer", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders an error message", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with dots in name", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should update when the e2e status when the user verification changed", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > should return undefined if no room shared with the user", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 23h formats to 23h", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > resets keys in the right order when resetting secret storage and cross-signing", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes multiple devices", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > opens interactive auth dialog when delete fails with 401", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should render if wrapped in room context", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns false when setting value is not true", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rendering PiP content 2 > should update the PiP content", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should automatically close when a modal is opened", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute additions", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not add other users beacons to beacon state", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed for the same pointer", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks in code blocks", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > expecting errors > throws if crypto is unavailable", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to request to join", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error fetching the backup version > shows an error", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is unexpired", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should display a notification for a voice message", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > setActiveRoomInSpace > should work with Home as all rooms space", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites even if they are also shown in a space", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > people space does contain people even if they are also shown in a space", - "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > supports events with missing timestamps", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > should not display the button", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (http)", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders unverified devices section when user has unverified devices", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > simple message renders as expected", - "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > calls the right callbacks", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should ignore when formatted_body is not filled", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is the current viewed and in both spaces", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for own event", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > re-renders on room join rule changes", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with people filter", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should start matrix client", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is true", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no sender", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is not the latest beacon for a user", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in an empty composer", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should apply new styles after mounted to animate", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > overwritelogin > should replace the current login with a new one", - "test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx:: > renders as expected", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return false for a non pinnable event type", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is defined", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; Android 7.0; SM-G610M Build/NRD90M; Flavour GPlay; MatrixAndroidSdk2 1.0)", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not pushrules", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should allow changing when neither server nor well known force encryption", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver config has fail error and recognised error string", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims from localStorage", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has knock style", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 1", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list starting later", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to collapse a reason", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with no args", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses the create event if there is no m.predecessor", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting all items should work", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > enables play button when playback is finished decoding", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > line breaks", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > displays alert if an identity server needs terms accepting", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should complete an sso flow", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Exact match in recently used takes the lead", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should show both call buttons in rooms smaller than 3 members", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 23 unreads, getHiddenHighlightCount should return 23", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when Recovery key is filled by user", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down in list", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished with sas when Interactively verify by emoji is clicked", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering different passwords > should show an info about that", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks client information", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return undefined when no token in localStorage", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > inline code", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should remap error codes correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready true", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > should go to setup e2e screen", - "test/unit-tests/languageHandler-test.tsx::languageHandler > getAllLanguagesWithLabels > should handle unknown language sanely", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return false for LocalRoom", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for added room rules", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped markdown", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f emoji", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > creates and adds recording to state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when the text is a plain text emoiticon", - "test/unit-tests/editor/position-test.ts::editor/position > move forwards within one part", - "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected without detail content", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for mixed content error", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > resets the model correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have active class when reversed", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isNew should return false", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct labels for banned and unbanned members", - "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > Sets up appropriate callEventGrouper for m.call. events", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain if passphrases don't match", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created in the current year", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should warn about self demotion", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A < keys for B", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is shown", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Allowed for a widget", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows a modal before ignoring the user", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an audio and video device is available > should return the audio/video stream", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > opens sidebar on view list button click", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when getRelationsForEvent is falsy", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in the same room", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders export type with timeline selected by default", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends unencrypted messages", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and confirming the login > should dismiss the device", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should enable Match system theme", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > does not update map style when style url is truthy", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > the event_id if SendMessageParams has relation and rel_type matches THREAD_RELATION_TYPE.name", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=unavailable/unreachable", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > updates individual keywords content rules when keywords rule is toggled", - "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > addEncryptedLiveEvent > should add file msgtype event to filtered timelineSet", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users with a custom limit", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > oidcClientstore should return a OidcClientStore", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns hour format for events created in the same day", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons for roomId", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev room mention", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > refreshes devices after verifying other device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for regular InputEvent", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders voip tab when voip is enabled", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should retain mentions in the original message that are not removed by the edit", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; FreeBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: FreeBSD", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens share room dialog on button click", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > is highlighted when unsent", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with only lat and lon", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage safari", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > updates markers on changes to beacons", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render a loader while loading", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads all state keys", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning rejects", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > adds unread marker when room notification state changes to unread", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are no members > should return an empty list", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with public room filter", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a question and some options", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 4 (can't be guaranteed)", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should export if everything is fine", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays a loader while checking keybackup", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error when beacons have stopping and location errors", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > Favourites and People meta spaces should not be returned when the feature_new_room_list labs flag is enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then does not send, return undefined", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should be possible to disable the checkbox", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with unstable m.location msgtype", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout and emit an update if there are no longer apps in the room", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > throws for when a room is not indexed", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show a thumbnail while image is being downloaded", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Even", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a loading state when the encryption state is computed", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should intercept clicks with a ViewRoom dispatch", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to public", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should show feedback prompt", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > refocuses on same beacon when clicking list item again", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if beta is disabled", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > user pill turns message into html", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a basic hierarchy", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at end of string", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > treats any invalid answer as a spoiled ballot", - "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information without url for electron clients", - "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should pluralise 5 files correctly", - "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding plural translations", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=false on non-last event if last event has a receipt from someone else", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggles session selection", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is undefined", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > decrypts event if needed", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > has no notifications with no rooms", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should execute callbacks in registered order", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 24 hr time format", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with public rooms", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an warning E2EIcon when the e2E status = Warning", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if touchInput", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing opening square bracket", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a non beacon event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders categories correctly", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=offline", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > registers clicks", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting and adding some items should work", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should return usage if no args", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays pending warnings when encryption is enabled", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = false", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes English message and localized translated message", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element deletions", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes display name", - "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when animated", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should have a Matrix-branded destination file name", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles text in tags and translates with fallback locale", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds all top answers when there is a draw", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns null for a poll start event", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a recording", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match ctrlOrMeta key combo", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should display the link in editing", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not render space header", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-ie", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for state event", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length < B length", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends a vote event when I choose an option", - "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time with hours", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if the app is not in the container", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should prevent out of order results", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should show validation tooltip if passwords do not match", - "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from original event when edited", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is enabled", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ActiveRoomChanged when the viewed room changes", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with people filter", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to a message in the same room with the label \u00bbMessage from Member\u00ab", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > when sendReadReceipts setting is disabled > should send a private read receipt", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single SSO button if identity_providers is null", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a cross-user verification", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should access to 4S and call onFinish when 'Enter recovery key' is clicked", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for unverified filter", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for null", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for favourites -> all transition", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > only returns events related to a thread", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alt alias if found", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is falsy", - "test/unit-tests/Rooms-test.ts::setDMRoom > when the direct event is undefined > should update the account data accordingly", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the read receipt is at the latest event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onSend when Enter is pressed when ctrlEnterToSend is false", - "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should add the widget successfully", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should make things rainbowy", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should create an array of given length", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for redacted event", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when no clientId is found in storage", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were pinned", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Can reset secret storage", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should strip tag from initial content", - "test/unit-tests/theme-test.ts::theme > enumerateThemes > should be robust to malformed custom_themes values", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when read receipt is not on the latest thread messages", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when data types has text/html but data can not be parsed", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits JoinRoomError if joining the room fails", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is falsy", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should return usage if no args", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons do not change live state", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should contain the last recently accessed items", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverified device", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown users", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should retry uia request on click", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.direct=", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests only rooms matching a prefix", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should default to 50 if no powerlevel specified", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1993-11-01", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to public", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > removes a room avatar", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should display an error when recovery key is invalid", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the message composer", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest event was sent by the current user", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device icon when no device type given", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects unmuted", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows search box when there's more than 20 members", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns true if device is verified", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key empty string", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up in list", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > honours m.space.parent if sender has permission in parent space", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > doesn't send a receipt if no room is in context", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes empty analyticsID if the id is not in the account data", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > should show a tooltip with the room Id", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should prevent \u00bbSettings\u00ab link click from bubbling up to radio buttons", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > all rooms space does contain rooms/low priority even if they are also shown in a space", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with knock join rules", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Odd", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders a verified device", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > renders when enabled and room join rule is knock", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = true", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist access token when idb is not available", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > shouldn't do anything for a local room", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse creation events", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/alice:example.org?action=chat", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > does not render a poll tile when end event is invalid", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > oidcClientStore should raise an error without a client", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > renders user labels correctly", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > when not hovering the pill any more > should dimiss a tooltip with the room Id", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing for muted channels", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid Recovery Key", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for rooms which cannot be obtained via client.getRoom", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at end of single line", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if legacy store in MigrationState `NOT_STARTED`", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no crypto", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with a replace relation", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on start", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key and the legacy key undefined", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should skip the queue for the given callback", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores all the trailing :", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same variable", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows a warning for an event from an unverified device", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > shows an error dialog with a generic error message", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should not show server picker", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > sets new beacon event id in local storage", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Removes old room if it finds a predecessor in the create event", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns undefined when there is no initial screen in session storage", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle undecryptable pre-join messages", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > clicking on ongoing (unpinned) call re-pins it", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > should send the mail and show the check email view", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name from a standard room ID", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > requests specific config for document domain", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped backslashes", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return mapping for develop version string", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with multiple winners", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should focus when receiving an Action.FocusEditMessageComposer action", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > repeatedly updates room state while connected", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly migrates old settings to the new model", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room as favourite", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha when they have the same notif state", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when layout changes", - "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders share buttons when there is a location", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should call /logout", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > unordered lists", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows call details and connection controls if the call is loaded", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > orders rooms by recent with muted rooms to the bottom", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets space=Home filter for all -> home transition", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should clear text field and suggestions when a suggestion is accepted", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > does not show account management link when not available", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should not show call buttons in a room with more than 2 members", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with 3 coords", - "test/unit-tests/utils/export-test.tsx::export > checks if the reply regex executes correctly", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should prepend https to input if it lacks it", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders kicked message", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event not sent by current user", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks unescaped", - "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should seed the array with the given value", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a second non-editable part, with another one before it", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no events when I click in an ended poll", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Odd", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add widget to top container", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from CATCHUP to ERROR", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows adding keywords", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > does not open maximised map when on click when beacon is stopped", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if @userMention is surrounded by text", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should use defaultName from props", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows the correct member count", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects when we leave the room", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > has() should return false for an item not in the cache", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when not minimized", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should treat invalid mxids as empty queries", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is replaced with an unencrypted one", - "test/unit-tests/stores/ActiveWidgetStore-test.ts::ActiveWidgetStore > tracks docked and live tiles correctly", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > does not parse room alias with too many separators", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only regular room members > should return the room members", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK not cached", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > renders", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > creates a marker on mount", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for a redacted event", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return true when user can invite and is a room member", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should not call notifyTimelineHeightChanged() for a different context", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > strips /me from messages and marks them as m.emote accordingly", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Verified", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > removing whole string", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should display custom theme", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders join button", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > opens forward dialog with correct event", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle rejections after unmounting sanely", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if Action.FocusMessageSearch is fired", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for invalid version strings", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for a single target with a room", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > disables submit button until geolocation completes", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should not choose a high-contrast theme if not available", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should prompt the user if the key is uncached", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > prepends events into summaries during backward pagination without changing key", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isNew should return false", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the southern hemisphere", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when email 3pids exist", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > strips plaintext replies", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon has no location", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with multiple previously pinned messages", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when multiple aspects change", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon has a stopping error", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the blacklist of unverified devices settings", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (ConnectionError) occurs", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should listen to room pinned events", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with public visibility", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a first non-editable part, with another one following", - "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > checks the persisted value", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding message", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus and clear when receiving an Action.ClearAndFocusSendMessageComposer", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - banana", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a disabled SeekBar > should render as expected", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > should show some emojis once keys are exchanged", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h3 with correct attributes", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from a selected room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists", - "test/unit-tests/Rooms-test.ts::setDMRoom > when trying to add a DM, that already exists > should not update the account data", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for invites", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 144 hours ago", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as unread", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > integration > should translate strings using translation system", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > for a maximised (centered) widget > clicking 'un-maximise' should send the widget to the top", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns false for an unknown asset type", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback for a non-local room", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute deletions", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the text fallback when fetching the start event fails", - "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should maintain the pointer to the given map", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > handles remote disconnection", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was ended", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when feature is disabled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should put unknown app version if on dev", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > excludes malformed responses", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should notify progress", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking right > should skip to plus 5 seconds", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a top-level space that was being viewed", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > show non-matching query members with DMs if they are present in the server search results", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > does not render non-beta labs settings when disabled in config", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all inactive devices button works", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders maps unavailable error for a live beacon with location", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > calls onClick", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but relation is missing event_id", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in the only feature group are supported", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the roomid", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with defaults", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > cleans up redaction listener on unmount", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should return `scalar_token` from API /register", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens parent thread for a thread reply message", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send cryptoSDK superProperty when enabling analytics", - "test/unit-tests/utils/DateUtils-test.ts::formatLocalDateShort() > formats date correctly by locale", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > ignores liveliness error when checking syntax only", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example\u00ab should return false", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without content body property", - "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is bridging messages", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders spinner while loading", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unknown", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room pinned messages on button click", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is only a predecessor event, it should count predecessor highlight", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should setup e2e when server supports cross signing", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _t", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and sending receipts is disabled > should send a fully read marker and a private receipt", - "test/unit-tests/MediaDeviceHandler-test.ts::MediaDeviceHandler > sets audio settings", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > updates filter when prop changes", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sets the correct thread in the room view store", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > opens the share dialog with the correct share link in an encrypted room", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not capture non-permalink clicks", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for beacon_info event", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Tolerates deletions until skip list is empty", - "test/unit-tests/components/views/rooms/AppsDrawer-test.tsx::AppsDrawer > honours default_widget_container_height", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new muted room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > returns human readable name", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should do nothing on cancel", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is day before the current day", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote even if I did it on another device", - "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if no widget_build_url", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders central word changes", - "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > renders", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > renders the devtools dialog", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders both cards when user has both unverified and inactive devices", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns human readable name", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without room ID > should raise an error", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room file panel on button click", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles multiple users following the same sequence of memberships", - "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > should send the voice recording", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a non-DM room with one third-party invite", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > should display the button", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should display an error if setup has failed", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores events for other timelines", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should change candidate server when highest power level user leaves the room", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when minimized", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when there is no Crypto available", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should open room settings when clicking the room avatar", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should support optional thumbnail params", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > and setting MessageComposerInput.showStickersButton to true > shouldtrue display the button", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when user is has invite rights for space", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Recently used emojis are correctly sorted", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > updates list order when devices change", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders the room header", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with a content body", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > should render 'Link new device' button in OIDC native mode", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room on submit", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined on clients with no crypto", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders without children", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not do anything for guests", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should handle Navigator::setAppBadge rejecting gracefully", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: ThreadsList > shows an unread notification badge", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > should hide unpinnable events found in local timeline", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > should return true", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and clicking \u00bbRe-enter email address\u00ab > should close the dialog and go back to the email input", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme on onload call", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > has room info icon that opens the room info panel", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.lowpriority=", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new phone number", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends plaintext messages correctly", - "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false for 1-1 rooms when widget_build_url_ignore_dm is true", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables live share setting on ok button submit", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can call if you have no friends but can invite friends", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCountLong > formats numbers according to the locale", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest second when less than 1min - 59 seconds formats to 59s", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with react node and translates with fallback locale", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return undefined for expired items", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Re-sort works when sorter is swapped", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not actionable", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Inactive", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by notification state then recent", - "test/unit-tests/components/views/messages/MStickerBody-test.tsx:: > should show a tooltip on hover", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h4 with correct attributes", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx:: > should fetch github proxy url for each repo with old and new version strings", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > after a session is restored", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > unordered lists", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should do nothing if the matrix server version is supported", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > uses forbidden by default when room has no guest access event", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val > 100", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a message", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on initial load", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > shows a public room label for a public room", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address for server name", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display information about the recovery key", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should switch rooms when edit is clicked on a search result for a different room", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Inactive", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be disabled when the modern layout is not enabled", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a window source in the window tab", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms per last message ts", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing at start of non-editable part prepends", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns all devices when no securityRecommendations are passed", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > updates value on option selection", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > does allow submitting when there are options and a question", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Sorting order is maintained when rooms are inserted", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > disables OK button when labs flag is not enabled", - "test/unit-tests/settings/controllers/FontSizeController-test.ts::FontSizeController > dispatches a font size action on change", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders denied request message", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should not create a pickle key when credentials do not include deviceId", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to true for all of them, it should return true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isCreated should return false", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > goes to room of latest beacon with stopping error when clicked", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we are checking the sync store", - "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been not denied", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > renders poll history option", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display a spinner when loading the device keys", - "test/unit-tests/Rooms-test.ts::setDMRoom > when the current content is undefined > should update the account data accordingly", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1066-10-14", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known force_disable for encryption setting", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should throw upon non-20x code", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving to end and all orders are undefined", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :heart", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > orders rooms by tag order without categorizing", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format multi line code", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > adds an error message when updating notification level fails", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > removes listeners", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should not show mute button for one's own member", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should mark selected suggestions as selected", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.server_notice=", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return true if the app is in the container", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect userText", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with no votes", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have focus", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length < B length", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > after empty line", - "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should batch promises into groups of a given size", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knocked to the room", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns default for other error", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a string enum", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle back to room-specific search", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unverified device", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for unknown error", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment srcHttp is falsy", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > shows verify session toast when account has cross signing", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > should send a fully read marker and a public receipt", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text description", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return false when we have a receipt for the thread", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > updates with new locations", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when general config rejects", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > orphan rooms are added to Notification States for only the Home Space", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 3", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for parts of words", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated PNG", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was missed", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders without icon", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return true for items in the caceh", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > catches error and logs when saving client information fails", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without msgtype", - "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room in an intentional mentions world", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onChange handler", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape single quote in placeholder", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > excludes values with incorrect types", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Video", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is ignored by default", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > mentions", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > ignores node", - "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > when a dialog is opened, the release announcement should not be displayed", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests a space whose alias matches a prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org/e/event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render WysiwygComposer when isRichTextEnabled is at true", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without an issuer in session storage", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should a pop-up for thread event", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show form when custom URLs disabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and a valid editor ref calls onChange with the editorRef innerHTML", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and when beacon liveness changes from false to true", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc3245.voice content", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for sticker event", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should use the provided entries", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to expand a reason", - "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should match the snapshot", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct default message", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > displays encryption as enabled", - "test/unit-tests/Modal-test.ts::Modal > forceCloseAllModals should close all open modals", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to change the recovery key > should display the recovery key", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0571-04-22", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should return usage if no args", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should display a tooltip", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a loader while responses are still loading", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on space keyup", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not clear storage", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback with the new room ID for a created room", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (via default)", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render + if last", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders when selected option is not in options", - "test/unit-tests/vector/init-test.ts::loadApp > should set window.matrixChat to the MatrixChat instance", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button and the display label", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders rejecting message", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on main tile click", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space doesn't contain rooms/low priority if they are also shown in a space", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when there is not existing selection", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in managed hybrid environments", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally true", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > sends a request even if everything has been read", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms based on thread replies too", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns an error", - "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without ID", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage if given an invalid power level value", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > ok to omit the substitution variables and cause object, there just won't be any cause", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays error if changing display name fails", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces encryption", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return false for LocalRoom", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return true for Room", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > emitCurrent > should not emit any event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should cache sounds between playbacks", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > removes geolocation control on geolocation error", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with floats", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when cross signing feature is not supported", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > checks whether form submit works as intended", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > room pill uses matrix.to", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > handles uploading a room avatar", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record normal-quality voice if voice processing is enabled", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > updates map center when centerGeoUri prop changes", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999 as 10K", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 2 days ago", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return null when the release announcement is disabled", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps asterisks", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 0 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when a member is added", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is not 1 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user has been invited to a channel", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > does not add ambiguous key to unique names", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > emote", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active recently if no activity", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when encryption is force disabled", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if download keys does not return any user", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and entering a non-email value > should show a message about the wrong format", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected style attributes when avatar url for room is falsy", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on logged in action", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > removes listeners", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with empty content body", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if longitude is not a number", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if none of the users has a device", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Even", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is replaced", - "test/unit-tests/utils/pillify-test.tsx::pillify > should not double up pillification on repeated calls", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test broken mentions", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows the invite button when canInvite is true", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage estimate", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a falsy recording", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 01-12 in 2-digit mode", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a plus menu for spaces", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId(null)", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with high error correction level", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > returns clearWatch function", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected attributes when avatar url for room is truthyf", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected style attributes when avatar url matches default", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > should allow auto-completing multiple times with resets between them", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when reminder is snoozed", - "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders without children", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when notifications are on for email", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no event id", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables all buttons with disabled prop", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should ignore guest accounts when ignoreGuest is true", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > does not mistake characters in text presentation mode for emoji", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should render", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders enabled invite button when current user is a member and has rights to invite", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the room directory when the explore button is clicked", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a space room", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should upload", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders inactive devices section when user has inactive devices", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not debounce slow changes", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should remove fresh login flag from session storage", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > renders the room options context menu when UIComponent customisations enable room options", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return true if bug_report_endpoint_url is set and UIFeature.Feedback is true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should not has placeholder", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected style attributes when avatar url for room is falsy", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if some of the users don't have a device", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders the date separator correctly", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > fires Action.RoomLoaded", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders menu correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > opens reaction picker on click", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should default to private room", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows direct message and mention buttons when member userId does not match client userId", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to home space", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > does not render input when set in ForceRoomExportParameters", - "test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx::AppearanceUserSettingsTab > should render", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on B ordering difference", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > hides the message button if the visibility customisation hides all create room features", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > starts update check", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Mozilla/5.0 (Linux; Android 9; SM-G973U Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36", - "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component with the recommended tag", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > hides text when minimized", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates a loud notification when enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should add emoji", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should keep arrays the same", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > does not render space header when room is not a space room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should cancel edit on cancel button click", - "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders basic card", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see removed from A->B", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect user agent", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly it contains varying length of backticks between text", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should show a toast if the matrix server version is unsupported", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup key cached", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is a M_NOT_FOUND error, it should report ready, displayname = MXID and avatar = null", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static WEBP", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills get injected correctly into the DOM", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name and port when included", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching pushers fails", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should disable the checkbox", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles tag substitution with React function component", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > linkification is not applied to code blocks", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time is up > should call stop", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > renders devices in correct order", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > filters ended polls", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when a message has been entered > should render the send button", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > updates selected duration", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Dart/2.18 (dart:io)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when cmd+enter is pressed when ctrlEnterToSend is true on mac", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have contentEditable at true", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in one of the feature groups are supported", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use display name for your others' reactions", - "test/unit-tests/components/structures/RightPanel-test.tsx::RightPanel > renders info from only one room during room changes", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Room rendering context", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > when there is an error fetching backups > prompts user to set up backup", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to cancel a join request", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders without a room", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Even", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user doesnt have a push rule defined in vector definitions", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji when a word is selected", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block with language specifier", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for mobile browsers", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > updates map bounds when bounds prop changes", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are left", - "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders only child if presence is disabled", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should open forward dialog", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should close search results when edit is clicked", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should only return valid content", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > updates the icon when the encryption status changes", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > extends device with client information when available", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for Element Desktop", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no encrypted rooms", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with a replace relation", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to CAS login", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications before syncing has started", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if the panel is open but in another room", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw upon non-20x code", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders loading beacon UI for a beacon that has not started yet", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description when editing a closed poll", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > with encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load without initialFocusedBeacon", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth disabled", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button is not shown when there is nothing to copy", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @foo:localhost", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > opens event index management dialog", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains all sub-space's child rooms", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple variable substitution and translates with fallback locale", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not call onSend when Enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > off sets all device isolation mode", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll start event from an active poll detail", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows disabled when call member power level is 0", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should not collect cross-signing pub key if not set", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for all -> space transition", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders own beacon status when user is live sharing", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > does not parse room alias with too many separators", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should do nothing if the content is unmodified", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.favourite=", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with two pages server side relations > emitFetchCurrent > should emit the server side events", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Does not show indent or unindent button when outside a list", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > handles when device is falsy", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite comes in", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user added", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.recent=", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders alternative key name", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders last seen ip metadata", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by prefix", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > hides if there's no content", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can approve and deny", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > all widgets should be in the right container by default", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for LocalRoom", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in German without item limit", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a function > returns result from incompatibleValue function", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > on should forward the call to VoiceRecording", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > opens maximised map view on click when beacon has a live location", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > exports when export type is NOT lastNMessages and message count is falsy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse event permalink via arguments", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > triggers a room update when room mutes have changed", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if there is non migrated legacy crypto store", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should fire FocusMessageSearch on Ctrl+F when enabled", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting 3pid invite with no identity server", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_not_signed_in", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string with duplicate character", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knock has been denied", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0062-02-05", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors is enabled > passes the flag through to getVisibleRooms", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be enabled", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > instance should always return the same instance", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default is not set to false", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing in middle of non-editable part appends", - "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > Return undefined with an empty TZ", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > orphans space does contain orphans even if they are also shown in all rooms", - "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return true for 1-1 rooms when widget_build_url_ignore_dm is unset", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > handles invalid centerGeoUri", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to create pickle key", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add and remove mentions from the edit", - "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > doesn't error when viewing redacted encrypted messages", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption info panel without pending verification", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on Action.OnLoggedIn", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > when called with an empty array, it should return an empty array", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > sends chat effects", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns critical if notification level is Highlight", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should return a Playback with the data", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a high-contrast theme if system prefers it", - "test/unit-tests/Reply-test.ts::Reply > stripHTMLReply > Removes from the input", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > should update the playback", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should start OIDC login flow as registration on button click", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'maximise' should send the widget to the center", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > shows a ghost read-marker when the read-marker moves", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user is not banned", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns false for a non location event", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > signs out directly if no rooms are encrypted", - "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > should show some emojis once keys are exchanged", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > is empty if 3pid features are disabled", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when updateSpace is called", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > isVisible > calls isRoomInSpace correctly", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds calls", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test room mention", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when light theme is selected", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders location publish error", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show SSO options if those are available", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at start of string", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > user mentions", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room threads list on button click", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a web device type", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is verified", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > does not check key backup status again after check is complete", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should submit successfully with a valid custom homeserver", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with security tab selected", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does not emit BeaconUpdateError when stopping succeeds and beacon did not have errors", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option for beacon_info event", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > room pill turns message into html", - "test/unit-tests/editor/history-test.ts::editor/history > push, undo, then redo", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > renders enable text", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and no room is viewed > should not render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a mention without a href closes the autocomplete but does not insert a mention", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > uses beacon owner name as beacon name", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should throw when oidcClient could not be initialised", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > pinning > renders pins options", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > renders a heading and a paragraph with name and user ID", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > creates pin drop location share event on submission", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without content body property", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should fail to retry once complete", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid audio files", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user timezone if set", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders other errors", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip single / from message prefixed with //", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns an empty string if we are not handling a user, room or at-room type", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is unverified", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing trailer", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMembers > should update on RoomState.Members events", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a basic string", - "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders with a logo by default", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > renders device verification cta on other sessions when current session is verified", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Odd", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders loading beacon UI for a beacon that has not started yet", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return an empty array on no matches", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should attempt token login", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > starts rendering stopping error on beaconUpdateError emit", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time left > should not call stop", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a plain message in open street maps", - "test/unit-tests/Notifier-test.ts::Notifier > onEvent > should not evaluate events from the thread list fake timeline sets", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was successfully fetched", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on web and not on macOS", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > renders share type switch with own and pin drop options", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when some feature is in beta", - "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should render empty state", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for state event", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room when changing join rule to restricted", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition when unmounted", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for orphans -> people transition", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > only creates a single history entry if given the same card twice", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device type", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by last active timestamp", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should correctly wrap format bold", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify using the server's analytics id if present", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should close settings if account deactivated", - "test/unit-tests/stores/notifications/NotificationColor-test.ts::NotificationLevel > humanReadableNotificationLevel > correctly maps the output", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > displays advanced section toggle when join rule is public", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should set the visibility to private by default", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > disables Add Room when user does not have permission to add rooms", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Space when user does not have permission to add spaces", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should open or close the message pinning list", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should throw for bad context variables", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description if we choose it", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is the exact same moment", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (Error) occurs", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Replaces the old room when a newer one joins", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at start", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use 'You' for your own reactions", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display errors from bootstrapSecretStorage", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return true when room is a public space", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms without messages first", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are backed up", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should do nothing for a range with length 0 at initialisation", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a non-resize event occurred in UIStore > should still display the sticker picker", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is no longer in that space", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for pinnable event types", - "test/unit-tests/models/Call-test.ts::ElementCall > create call > don't sent notify event if there are existing room call members", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders switches correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage persisted", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > dismisses toast on accept button", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon without error when no beacons exist for room", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > the perParticipantE2EE url flag is used in encrypted rooms while respecting the feature_disable_call_per_sender_encryption flag", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should cancel editing and ask for event removal when message is empty", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values for portrait images", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with a content body", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TT:h", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders check_code_mismatch", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show continue button when oidc native flow is correctly configured", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at end of string", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if functional members state event does not have a service_members field", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user has no push rules event in account data", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > adds trailing slash to relativeLocation when not an empty string", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alias if found", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing phone number", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no force_disable property", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > clicking submit updates device name with edited value", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should render", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be disabled", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile thread summary > removes the thread summary when thread is deleted", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is closed", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should warn when trying to create a room with an invalid form", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 1", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show SSO button if that flow is available", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should create new matrix client with credentials", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows emoting with non-text parts", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes feature_allow_screen_share_only_mode setting to allowVoipWithNoMedia url param", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.direct=", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders invite menu item when UIComponent customisations enables room invite", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for room member event", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FF:h", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should rotate the pinned events when the banner is clicked", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on start", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display display a poll event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room clipboardData files and types are empty", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when space is public", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a desktop device type", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should handle decimal versions", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > clicking retry should set the room state to new dispatch a local room event", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles error fetching backup", - "test/unit-tests/favicon-test.ts::Favicon > should draw a badge if called with a non-zero value", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > sets export format on radio button click", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during reciprocation", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create room dialog on add room button click", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > confirming the unknown user dialog > should invite all users", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should show knock room join rule when upgrade is enabled", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages with no key backup", - "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > does not try to re-decode audio", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should still start a native call", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the local notifications settings status when clicked", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for DE", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects muted", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should empty search field when the timeline rendering type changes away", - "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns legacy uri when m.location content not found", - "test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx::KeyboardUserSettingsTab > renders list of keyboard shortcuts", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > get() should return undefined", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > when viewing a call without a broadcast, it should not raise an error", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should not abbreviate if has path parts", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if feedback is disabled", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not skip to auto join", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > uses shared as default history visibility when no state event found", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > listens for client events", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > should log the invalid content", - "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should render", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition to current position", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns kick, redact messages, ban buttons if conditions met", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQsFromFragment", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > shows toast with unverified devices at app start", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room by the 'all rooms' fallback", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if there's an ongoing (pinned) call", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Passes the feature flag on to the client when asking for visible rooms", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > should validate delegated oidc auth", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides unread notification badge", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a room outside of a space that was being viewed", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to rule value when no synced rule exist for the user", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for around pills", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with changed power level", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows un-voting by passing an empty vote", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom(), sets promptAskToJoin state to false and shows an error dialog", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates in app when clicking view in timeline button", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > cancels ignoring the user", - "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does not render the permalink", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FF:h", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to destroy pickle key", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound email address", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when room is tombstoned", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error when no event index is found and enabling not in progress", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Unverified", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > 24 hours formats to 1d", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders map without markers when no live beacons remain", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > should call prepareToEncrypt when the user is typing", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for no relation when not passed one", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 and 2 > should render both contents", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should handle an empty hash", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should create a public room", - "test/unit-tests/email-test.ts::looksValid > for \u00bba@b.org\u00ab should return true", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Group correctly", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when participants change", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with multiple threads", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string with weekday if date is within last 6 days", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > displays message when room cannot federate", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag false on no ordering difference", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test room mention", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.emote correctly", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > separates metadata with a dot", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should persist login credentials", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, and device signed", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should render", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Multiple unknown params", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when adding a mention", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links in codeblock are not modified", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for non-3rd-party members", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button in expanded mode", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > durationSeconds should return the VoiceRecording value", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unexpected_message_received", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect support properly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the sender for the thread list", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch to dark", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not render the component when not ready", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple users", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to HTML messages", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for something that is not an URL", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > tracks layout", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the poll topic on mount", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return the next feature when the next release announcement is called", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill without splitting at the colon", - "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > renders button", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after 10s > the last Jitsi widget should be removed", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test user mentions", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not identify the user to posthog if anonymous", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if all conditions are met", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element additions", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > triggers the primary action callback for denied request", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains geo_uri", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form with change server link", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I voted but the poll is undisclosed", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should show dialog if some encrypted rooms", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert user pill", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If two new instances start concurrently, only one wins", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > renders audio processing settings", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: Linux", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should handle AsyncActionPayload", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Zero altitude is not unknown", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for undecrypted event", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly persists state to and from localStorage", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when child room is added", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for slash separated text", - "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise on onerror call", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when no rooms are encrypted", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the HTTP source if the room provides a MXC url", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > activity renders unread notification badge", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div and br tags when enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was reported before a logout/login cycle", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a room alias permalink", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and no editor ref does not call onChange", - "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly generates change calls", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not touchInput", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return error when version check fails", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should export", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should start matrix client", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should leave room and dispatch after leave action", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element dbg/1.5.0-dev (Xiaomi Mi 9T; Android 11; RKQ1.200826.002 test-keys; Flavour GooglePlay; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > kills event listeners on unmount", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to the default", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a full m.asset event", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status queued", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the current user's identity is approved", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if there is no matrix client", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support block katex", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and confirm the email link and submitting the new password > should send the new password (once)", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > getRoomIds should return the room Ids", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while verifying", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles 3 joined top level spaces", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > calls update callback when a toast is added", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached", - "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > should render", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > should parse html iframe snippets", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when user has no permission", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button and clicks explore rooms", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has not yet been started, the displayname and avatar should be null", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with React function component and translates with fallback locale, attributes fallback locale", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for rooms without beacons", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp floats", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given an invalid state", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects when we leave the room", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not unsilence calls when local notifications are silenced", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > acknowledges mute_device widget action", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send empty html message", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > type after inserting pill", - "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 24 hour mode", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > does not honour m.space.parent if sender does not have permission in parent space", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is undefined, uses .events_default", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > authComponentStateForError > should return expected error for the registration page", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should not mangle code blocks", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a self-verification", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Shows migration progress", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should destroy pickle key", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption verification panel with pending verification", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a warning message when poll has undecryptable relations", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call is connecting", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed message events", - "test/unit-tests/utils/UrlUtils-test.ts::parseUrl > should not throw on no proto", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request fails", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu while devices are loading", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should clear the error", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > distinguishes widgets with the same ID in different rooms", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near left edge of window", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > checks the event status", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist access token when idb is not available", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights nothing if poll has no votes", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by ID and join", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with fallback", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing](foobar) -> testing|", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element video room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight when no version of message's push actions have a highlight tweak", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > and forgetting the read markers, should send the stored marker again", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias didn't change", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no vote event when I click what I already chose", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > pretends to request notification permission", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a heading", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with a single, unparticipated thread", - "test/unit-tests/email-test.ts::looksValid > for \u00bb\u00ab should return false", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > indicates support for notifications", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show member list right panel phase on Action.ViewUser without `payload.member`", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the overlay timeline", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width in large mode", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle matrix.org permalinks", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should open spotlight when Ctrl+k is fired", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child invites", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when changed alias and added alt alias", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear for event permalinks with a custom label", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > renders formatted body without html correctly", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return service_members field of the functional users state event", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > replaces toasts by key without changing order", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles other errors", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return only item when given list of length 1", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should not be ok if sync store but no crypto store", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return false from VoiceRecording", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat two arrays", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should handle emojis", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline updates without a live event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should abort login when we expect to find an access token but don't", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist device language when available", - "test/unit-tests/components/views/location/Map-test.tsx:: > renders", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should handle up/down arrow keys work when handleUpDown=true", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > operates on the current room if no room is specified", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > calls onClick handler when clicking outside of share buttons", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should call the onResetIdentityClick callback when the reset cryptographic identity button is clicked", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should return usage if no args", - "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders without a logo when showLogo=false", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > doesn't restore member info cards when switching back to a room", - "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise if pooling maximum value is reached", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling a user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist credentials", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks with http protocol", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room with no parent spaces or members when changing join rule to knock", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > does not call onClick handler when clicking share button", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a map with markers", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Ignores m.predecessor if labs flag is off", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message with a generic title", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > deletes devices and calls onFinished when interactive auth is not required", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with all behaviour", - "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sun-Sat in short mode", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders dropdown options in menu", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon description as beacon name", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is not 1", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is replaced", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by power level", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > opens map dialog on click", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account deactivation feature is disabled", - "test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for activity", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions when a beacon fails intermittently", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace user mentions with user name in body", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > normally doesn't open the chat panel", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to shared", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates if there are unsent messages", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when some sessions are already selected", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when only an audio stream is available > should return the audio stream", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clickign with a drag motion below the threshold of 5px, it should pass the click to the children", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should generate big emoji for an emoji-only reply to a message", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > displays error when pusher update fails", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the dial pad when the dial button is clicked", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight message where message matches no push actions", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should convert snake_case to camelCase in simple scenarios", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should call onForgotRecoveryKey when the 'Forgot recovery key?' is clicked", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending redaction", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for a UTD event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling, but * becomes _ and __ becomes **", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created less than 24h ago but on a different day", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > clicking checkbox toggles selection", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop when it is false", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by alias and join", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > initialises correctly with no beacons", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > installs update", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected attributes when avatar url is not default", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of unreads", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > canSetValue should return true", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a MessageEventFactory for an audio message event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when fetch fails", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept :NUM (port specifier)", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the first item should work", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders insecure_channel_detected", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for redacted message", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom() and sets promptAskToJoin state to false", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing header", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with hyphen in domain part", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally false", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render permission request", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.audio event type", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should fail when query params do not include valid code and state", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity trusted and device is signed by owner", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show username field with autocaps disabled", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent widget with back button when viewing the room", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > increments countSeen when toast has bottom priority", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length > B length", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > shows a spinner initially", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > hyperlink", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-relations", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is disabled, it should not render the developer tools option", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > does not render thread button for a beacon_info event", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when the room version is unsupported and upgrade is enabled > should disable the checkbox", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should display the deactivate account dialog when clicked", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender and get sender", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If a third instance starts while we are waiting, we give up immediately", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > updates guest access on toggle", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > displays no results message when there are no devices", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles and sets settings correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on others actionable event", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for de-DE", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates live timeline when a timeline reset happens", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows an unverified dehydrated device", - "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should wait for the current batch to finish to request the next one", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a string to german", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders devices without available client information without error", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding email", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > records error when stopping beacon event fails to send", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests nothing if the room is muted", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should count different error codes separately for multiple failures with different error codes", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should clear input on cancel", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > adds own users beacons to state", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes angle brackets", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location stable type", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for a non-object", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > should display the button", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > unsubscribes from geolocate errors on destroy", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notifications type", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > allows forwarding a room message", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > closes on close button click", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request succeeds", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should delete the event", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return false if event is not unpinnable", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :man", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an Error is raised > should log the error and show the \u00bbNo media permissions\u00ab modal", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > opens the chat panel if there are unread messages", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not render size limit input when set in ForceRoomExportParameters", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the thread panel", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > dispatch a local_room_event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with the expected arguments when text node is valid command", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with day of week and time when last activity is less than 6 days ago", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct buttons when definitions have checked prop", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > returns an empty map for completion types other than room, user or at-room", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when new version of message's push actions have a highlight tweak", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Room rendering context", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are joined", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > should render welcome page after login", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with dots in name", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing backslash", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when ctrl+enter is pressed when ctrlEnterToSend is true on windows", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a top-level space that was being viewed", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > refreshes beacon liveness monitors when pagevisibilty changes to visible", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns false when platform does not support notifications", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f emoji", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are unpinned", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should remove the link", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > does not show a dot if the level is activity and hideIfDot is true", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > clicking cancel button from location picker closes dialog", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when encryption by default is disabled > should allow to invite more than one email to a DM", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should not display the recovery panel when key storage is not enabled", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a list of active polls when there are polls in the room", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for multiple paragraph", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > opens maximised map view on click when beacon has a live location", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _tDom", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for own event", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores trailing `:`", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders only some buttons in narrow mode", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when expanded", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested lists", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > updates history visibility", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > clears loading state when device deletion is cancelled during interactive auth", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Zero altitude is not unknown", "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks visible vs. not visible events", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should return null", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should only clone the top level properties", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if set false and existing event is false", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns true for a room that only contains a hidden event", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return true for Room", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > removes toast and emits", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = true", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render inline katex", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no support in crypto", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should strip reply fallback", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should render when asked to" - ], - "pass_to_fail": [], - "pass_to_skipped": [], - "fail_to_pass": [ - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > correctly handles the loading/disabled state", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > keywords", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings with guest spa url", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders unselected device tile with checkbox", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings without guest spa url", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of undefined", - "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should list spaces which are not parents of the room", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > goes to filtered list from security recommendations", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of \"this is a byline\"", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when all devices are selected", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders export dialog", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders selected tile", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > matches the snapshot", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when no devices are selected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > renders" - ], - "fail_to_fail": [ - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > should match the snapshot", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > requests in expanding batchSizes", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state CREATING should match the snapshot", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when the active space is not MetaSpace.Home", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when UIComponent.ExploreRooms is disabled", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > handles accounts with zero rooms", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_UNEXPECTED_RECOVERY_KEY)", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > does not show the face pile for DMs", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should render hidden image placeholder", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > has button to edit topic", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > doesn't get stuck in a loop if you view rooms quickly", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a custom subscription for a lazy-loadable room", - "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should reset the encryption when the continue button is clicked", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when connection state changes", - "test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx:: > renders security section", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > retrys event on retry click", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (DISALLOWED_APP)", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verification unavailable message", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > that is encrypted > should match the snapshot", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > handles remote disconnection and reconnect right after", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room summary", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should not display the compose menu", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verified badge when user is verified", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when connection state changes", - "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a subscription for the room", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show the empty state when there are no pins", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should not open app after cancelling device verify if unskippable verification is on", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should update when key backup status event is fired", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verify button", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should not display the timeline when the room encryption is loading", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display search and explore buttons", - "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should display the 'forgot recovery key' variant correctly", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render empty state", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should render the RoomListSearch component when UIComponent.FilterContainer is at true", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > ThreePidInviteTileView > renders ThreePidInvite correctly", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > renders ", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should not render the RoomListSearch component when UIComponent.FilterContainer is at false", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room topic in the summary", - "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite when room in not available", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > unsends event on cancel click", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can submit a bug report", - "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > renders empty state", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display the compose menu", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should render", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should render manage integrations sections", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should not display the space menu", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_CUSTOM_REASON)", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (undefined)", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > waits if the room is not yet known", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should not download image", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > checkSupport > shorts out if the server has 'native' sliding sync support", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_BAD_VERSION)", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > should match the snapshot", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (CUSTOM_ERROR_TYPE)", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > should show a policy link when provided", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display the dial button when the PTSN protocol is not supported", - "test/unit-tests/vector/init-test.ts::showIncompatibleBrowser > should match snapshot", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > should render a deactivate button for users of the same server if we are a server admin", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the reset identity panel when the user clicks on the reset cryptographic identity panel", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should show the complete security screen if unskippable verification is enabled", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > should render joined video room view", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > subscribes to the room", - "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display the space menu" - ], - "fail_to_skipped": [], - "skipped_to_pass": [], - "skipped_to_fail": [], - "skipped_to_skipped": [ - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > backslashes", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block surrounded by text", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > underscores within a word", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block followed by newlines", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > adds a new room", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > removes a room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs without newlines", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations with trailing and leading whitespace", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested ordered lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines with trailing and leading whitespace", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested unordered lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list directly preceded by text", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > user pills", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list directly preceded by text", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > redaction > updates component on before redaction event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations without separating newlines", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list where everything is 1", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links without trailing slashes", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested mixed lists", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text and no newlines", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 as the domain name", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should decrypt a range of inputs" - ], - "none_to_pass": [], - "none_to_fail": [], - "none_to_skipped": [], - "pass_to_none": [], - "fail_to_none": [], - "skipped_to_none": [], - "new_tests": [], - "removed_tests": [] - }, - "stable_classification": { - "pass_to_pass": [ - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until end of timeline is reached while within time limit", - "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an existing DM > should update the account data accordingly", - "test/unit-tests/stores/AutoRageshakeStore-test.ts::AutoRageshakeStore > when the initial sync completed > and an undecryptable event occurs > should send a to-device message", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions between other events", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders preview space toggle", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for one of them, it should return false", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display an error message when the room is unreachable via the roomId", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should not parse @foo without domain", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should download on click", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is same day as current day", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given an invalid state", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Unverified", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > watches device client information setting", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders both cards when user has both unverified and inactive devices", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows a modal before ignoring the user", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing phone numbers", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > clears previous error and emits when stopping beacon works on retry", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders invite message when invite email mxid match", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Even", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > calls on beacon click", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should pass via of the server being explored when joining room from directory", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up for an audio message", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 3 when notificationCountType is 3", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to deny a request", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in rooms larger than 2 members", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > displays alert if an identity server needs terms accepting", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup version", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string exists but not for for count", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use 'You' for your own reactions", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays name edit form on rename button click", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons by descending expiry time", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows adding keywords", + "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should match the snapshot", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not render size limit input when set in ForceRoomExportParameters", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > appends the phase to any phases that were there before", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should display a notification for a voice message", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets message count on change", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > flush > should clear profiles, known profiles and errors", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain about weak passphrases", + "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should group appropriately", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the overlay timeline", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created in the current year", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with surrounding text", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays a loader while checking keybackup", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > catches an error from localstorage", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knock has been denied", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'set up recovery' toast", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > does not call onClick handler when clicking share button", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > should return false", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should return empty string if passed falsey", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have hover style when hovered and reversed", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an empty and non-empty array", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when cmd+enter is pressed when ctrlEnterToSend is true on mac", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > includes threads", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should show all activated MetaSpaces in the correct order", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an Error is raised > should log the error and show the \u00bbNo media permissions\u00ab modal", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a timeline update", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > Should migrate existing login", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when light theme is selected", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not installed WPA", "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render PlainTextComposer when isRichTextEnabled is at false", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify MXIDs", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns false for an event with voice content", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users in the user directory", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 12 hr time format", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the sticker picker", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should throw error if server fails with something other than UIA", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions at app start have been dismissed", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should default to name 'Attachment' if file doesn't have a name", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in public room", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders plain text children", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders other errors", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted and later becomes visible", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the text fallback when fetching the start event fails", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens parent thread for a thread reply message", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block followed by text after a blank line", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > updates on event decryption", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when a command is followed by other text", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show set room layout button", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not installed > renders link to install seshat", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (other widget)", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > markdown-like symbols", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling off", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for home -> space transition", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set for unknown users", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have been offline for too long", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false", "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - AppleTV11,1/11.1", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join enabled > does render the RoomKnocksBar", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > should render login page", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user should return the profile from the API and cache it", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid passphrase", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles master switch correctly", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is not the latest beacon for a user", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when new version of message's push actions have a highlight tweak", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > updates map style when style url is truthy", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > room pill uses matrix.to", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = false > should invite all users", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > invoke > should invoke to every registered module", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without an issuer in session storage", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 1", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record high-quality audio if voice processing is disabled", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > does not render unverified devices section when only the current device is unverified", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does not emit BeaconUpdateError when stopping succeeds and beacon did not have errors", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message when kicked", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback for a non-local room", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > should add new DM Invites to the People Space Notification State", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates if there are unsent messages", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows search box when there's more than 20 members", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (via default)", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then sends it anyway", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should not prepend https to input if it has it", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in one of the feature groups are supported", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should close when selecting default homeserver and clicking continue", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > fires favourite dispatch on button click", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a room alias", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is no longer in that space", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > oidcClientStore should raise an error without a client", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should return the custom config", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event that is not in timeline but relates to unknown parent to the widget", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.hangup", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > throws when room is not found", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an unknown message in the same room with the label \u00bbMessage\u00ab", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the instance was forgotten", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when show_labs_settings is enabled in config", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > does not render Add Space when user does not have permission to add spaces", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should show loaders while 3pids load", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > does not truncate a reason unnecessarily", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should fail to retry once complete", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should disable theme selection when system theme is enabled", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return undefined when no token in localStorage", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev user mentions", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without msgtype", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not leave/ban", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event with thread info", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > is hidden when no notifications exist", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when supported", + "test/unit-tests/favicon-test.ts::Favicon > should recreate link element for firefox and opera", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > does nothing if the room has no phase to open to", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > when called with an empty array, it should return an empty array", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to knock", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 23h formats to 23h", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for redacted poll start", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if touchInput", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > deduplicates diff steps", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver fails liveliness check", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles non-html input", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > doesn't change KEYBOARD_SHORTCUTS when getting shortcuts", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > no mentions", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at start of string", + "test/unit-tests/components/views/messages/DownloadActionButton-test.tsx::DownloadActionButton > should show error if media API returns one", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.2 Explicit CRS and accuracy", + "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for non-reply events", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > shows an error dialog with a generic error message", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: Linux", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user _is_ banned", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return true when room is a public space", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when alt+Enter is pressed", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"The sender has blocked you from receiving this message\"", + "test/unit-tests/utils/objects-test.ts::objects > objectClone > should deep clone an object", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should change the copy button text when clicked", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does geolocation and sends location immediately when user has live beacons", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown users", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display an error message when the room is unreachable via the roomId", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing by default", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with security tab selected", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when clicking start a voice message > should try to start a voice message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Enabled if backup key is cached locally", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > renders in german", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when not minimized", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the room is not a DM", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > replaces toasts by key without changing order", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally true", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return false when we have a receipt for the thread", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders without children", + "test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts::Algorithm > sticks rooms with calls to the top when they're connected", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@alice:example.com\u00ab should return false", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > shows group call toast", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a space room", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with multiple previously pinned messages", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic to HTML", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a space", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove an email address", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time & date string without year if it is within the same year", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is unexpired", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon without a location correctly", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on enter keydown", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user has no push rules event in account data", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is # or @", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should unpin the event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > has room info icon that opens the room info panel", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > updates include attachments on change", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Does not remove old room if there is no predecessor in the create event", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when one of the predicate return true", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames ending in a backslash work", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have focus", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > renders location icon", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should omit attachments", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user active after activity if no window focus", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation permissions are not granted", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should dismiss toast when 'not now' button clicked", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect modernizer", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog when crypto is disabled", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should not camelCase a trailing or leading underscore", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the thread panel", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if no thread in the room has notifications", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with a soft-logged-out session > should show the soft-logout page", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly handles audible keywords without mentions settings", + "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > opens modal on click", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons do not change live state", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > sends correct state event on click", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to deny a request", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons correctly", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Samsung SM-G960F; Android 6.0.1; RKQ1.200826.002; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds the top answer among several votes", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for non-video mimetype", + "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should match snapshot", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no force_disable property", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > rechecks theme when setting theme fails", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs including formatting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should display the link in editing", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should not has placeholder", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders central word changes", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute deletions", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should render spinner while app is loading", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when a message has been entered > should render the send button", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle serverConfig updates correctly", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > clears highlight message in the room view store", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is same day as current day", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when it is dismissed", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > spaces contain dms which you have with members of that space", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > updates marker position on change", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if there is no matrix client", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on main tile click", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is not enabled > Passes the dynamic predecessor flag to getVisibleRooms", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if not wrapped in a client context", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Notification rendering context", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.favourite=", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to the loudest synced rule value", + "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false if widget_build_url is unset", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > shows the autocomplete when text has @ prefix and autoselects the first item", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should copy the layout to the room", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event if not in timeline", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and the server liveness check fails > should show the server error", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a cross-user verification", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should not show error modal when the verification request is changed for some other reason", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Unknown param", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > can change joining calls power level", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should be predictable with double underscores", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > handles errors fetching session key", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type ThreadsList dispatches show_thread", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should favourite a room", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with an unread message in a thread", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates desktop notification when enabled", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the left > should return a position to the left", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot approve", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders with children", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"Unable to decrypt message\"", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room that is ready after a while > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > dispatches view settings action on preferences event", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving more right when all is undefined", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > hides the push notification section when no pusher", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon is not live", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render not display the tooltip when the release announcement is displayed", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should have an SDK-branded destination file name", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with two winning answers", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show widget as pinned", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns false for space", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an event in another room with the label \u00bbMessage in Room 2\u00ab", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with valid data > getRoomIds should return the new room Ids", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > encrypt > should round-trip", + "test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx:: > renders", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load with an initially focused beacon", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders an error message", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > renders in error mode", + "test/unit-tests/editor/range-test.ts::editor/range > range replace across parts", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > ok to omit the substitution variables and cause object, there just won't be any cause", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no support in crypto", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can call when you're two in the room", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with a custom title and default options", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not prompt ask to join", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display label as placeholder", + "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders map correctly", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should block Ctrl/CMD + k shortcut", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is displayed with the setting enabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is in the current space", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > removes client information on start if it exists", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test room mention", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should update when the e2e status when the user verification changed", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a non-standard pickle key > should create and start new matrix client with credentials", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should display an error if setup has failed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should store clientId and issuer in session storage", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address for server name", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for verified filter", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 1-12 in numeric mode", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders display name with a tooltip", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of room creation events quickly", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is non-null and room.getEventReadUpTo is null, shows disabled read receipt button", + "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should use inviter's id when room member is not available", + "test/unit-tests/components/views/auth/RegistrationToken-test.tsx::InteractiveAuthComponent > Should successfully complete a registration token flow", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should make correct request to register client", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should render nothing if no url given", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no left space", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should add emoji", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection is not a cursor", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should create new matrix client with credentials", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking right > should skip to plus 5 seconds", + "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > renders revoke button", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > calls getCompletions when given a valid suggestion prop", + "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the default when the input is not a number", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render email addresses", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should clear textbox content when clear is called", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a falsey value", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > renders device verification cta on other sessions when current session is verified", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > should return liveData from VoiceRecording", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_not_found", + "test/unit-tests/utils/export-test.tsx::export > checks if the render to string doesn't throw any error for different types of events", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for the home space", + "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders plain text link correctly", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return null if the app has no avatar URL", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backslashes", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles text in tags and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > cancel button clears selection", + "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > renders options", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users cannot see encrypted messages", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error when bootstraping the secret storage, it shows an error", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should apply new styles after mounted to animate", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply to room mention", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Calls onLogoutClick", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account true", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting and adding some items should work", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show form when custom URLs disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room member list on button click", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a null room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with mjolnir tab selected", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for orphans -> people transition", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders space settings option when user has rights", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #localhost:foo.com", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is an unknown room in the predecessor event, it should not count predecessor highlight", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return properties which were changed, added, or removed", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > paginates", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a message", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by notification state then recent", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :man", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > properly handles replies", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for File rendering context", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready false", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests nothing if the room is muted", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Removes old room if it finds a predecessor in the m.predecessor event", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by presence state", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > should show the password input view", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should not call onSend when Enter is pressed", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Insertions into empty skip list works", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > start ringing on ring notify event", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows enabled when call member power level is 0", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload on window location object", + "test/unit-tests/utils/UrlUtils-test.ts::parseUrl > should not throw on no proto", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track events if anonymous", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can close the bug reporter", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is not a valid URL", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a fallback when there are no locations", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration request fails", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Tolerates deletions until skip list is empty", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if longitude is not a number", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders export type with timeline selected by default", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val < 0", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should reuse initialised oidc client", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room version", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h1 with correct attributes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates support for desktop capturer", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should create new matrix client with credentials", + "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset without description", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Regenerates all lists when the feature flag is set", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the read receipt is at the latest event", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in the only feature group are supported", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > the event_id if SendMessageParams has relation and rel_type matches THREAD_RELATION_TYPE.name", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when only of the threads has a receipt", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a deviceId", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests reduced", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address and port", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.RoomLoaded > updates viewRoomOpts", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #foo:localhost", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > handles remote disconnection", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should remove mentions that are removed by the edit", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables sign out button while sign out is pending", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated PNG", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page with correct error when login state is not found", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should launch a confirmation modal", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should has placeholder", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a non-local room ID", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return true for Room", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should close settings if account deactivated", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > handles error when updating setting fails", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Verified", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with high error correction level", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables live share setting on ok button submit", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should not run the migration", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should delete the event", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready and call showUpdate when current version differs from most recent version", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a command inserts the command", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not generate previews for rooms not rendered", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (one of the pinned widgets)", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a first non-editable part, with another one following", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOf > should return the correct positioning", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > cannot send delayed events with missing arguments", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest invalid MXIDs", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from SYNCING to RECONNECTING", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isCreated should return true", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if everything was forgotten", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result does not include homeserver config", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > and there is a thread timeline > should send receipts but no fully_read when reading the thread timeline", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is not equal to true", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with more than 2 members", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not make /messages requests when exporting 'Current Timeline'", "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > prompts user to set up recovery if backups are enabled but recovery isn't", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is over a week ago", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with line breaks", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > renders radios correctly when no value is provided", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a limit", + "test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx:: > should match snapshot", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders the push notification section when a pusher exists", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > should return the same list if the lookup doesn't return any results", + "test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx:: > renders a QR code", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with React function component and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > defaults to moderator for joining calls", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > send guest access event on toggle", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should handle loud notifications", + "test/unit-tests/utils/pillify-test.tsx::pillify > should not double up pillification on repeated calls", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an verified E2EIcon when the e2E status = Verified", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the sender for the thread list", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Unverified", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking without a drag motion, it should pass the click to children", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 59 minutes formats to 59m", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > removes geolocation control on geolocation error", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return undefined for a single target without a room", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (12.9-inch) (3rd generation); iOS 15.2; Scale/3.00)", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > takes someone's most recent vote if they voted several times", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > assigns different keys to summaries that get split up", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should attach an empty mentions object for a message with no mentions", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is only a predecessor event, it should count predecessor highlight", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when read receipt is not on the latest thread messages", + "test/unit-tests/MediaDeviceHandler-test.ts::MediaDeviceHandler > sets audio settings", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon description as beacon name", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should throw when created with invalid config for LastNMessages", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should empty search field when the timeline rendering type changes away", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description if we choose it", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns true for an event with a renderer", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is more than max", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at end of string", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = false", + "test/unit-tests/editor/range-test.ts::editor/range > range trim spaces off both ends", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two members", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when no device is available > should log the error and show the \u00bbNo media permissions\u00ab modal", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the southern hemisphere", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true when the event for a thread receipt can't be found", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly rejects quick reaction with extra text", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when audioNotificationsEnabled setting is truthy", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers not allowed by ACLs", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel and retry button for an event with NOT_SENT status", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with session manager tab selected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should have disabled submit button initially", + "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders presence indicator with tooltip for DM rooms", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should retain mentions in the original message that are not removed by the edit", + "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time without hours", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is falsy", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are no members > should return an empty list", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Odd", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup key cached", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should include app version", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > does not render if the room join rule is not knock", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > createVoiceMessageRecording should return a VoiceMessageRecording", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > start should forward the call to VoiceRecording.start", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isNew should return false", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets flag if setting false and existing event is true", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 2 days ago", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a redacted event", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves immediately if the user is already a member", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > does not delete a device when interactive auth is not required", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display an error if password change failed", + "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking a digit button calls the correct function", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is the current viewed and in both spaces", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing linebreak", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > works when not a member", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns default if notification level is Activity", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should fetch cross-signing and device info", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alias if found", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget as an account widget > updates viewed room", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when all devices at app start are verified", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested unordered lists", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form with change server link", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room with a pending third-party invite", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes avatar", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should not show more than 100 messages", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > sets device verification status correctly", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand missing highlight.value", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address and port", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a matrix client context", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > renders qr code login section", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return false for LocalRoom", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if legacy store in MigrationState `NOT_STARTED`", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > reconnects after disconnect in video rooms", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > failed to connect", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when localStorage is not available", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with an empty array, it should return true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should do nothing if the content is unmodified", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders rate_limited", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > emitCurrent > should emit the related event", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates the user has been invited to a channel", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are missing", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold for join and leave", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready true", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = false", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show SSO options if those are available", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays encrypted rooms as encrypted", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > fails if the supplied URI is empty", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds no calls", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; Android 7.0; SM-G610M Build/NRD90M; Flavour GPlay; MatrixAndroidSdk2 1.0)", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return January-December in long mode", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request fails", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > getRoomIds should return the room Ids", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > doesn't clean up valid devices", + "test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx:: > should render", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should throw for bad context variables", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > initiates map with geolocation", + "test/unit-tests/components/views/location/shareLocation-test.ts::shareLocation > should forward the call to doMaybeLocalRoomAction", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but relation is missing event_id", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > getRoomIds should return an empty list", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at start", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at start", + "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders null when no location", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > updates history visibility on toggle", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for an unknown beacon id", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render nothing when there are no pinned events", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > removes account data events for devices after sign out", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should allow an Admin to demote themselves but not others", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in the same room", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the non-overflowing case correctly", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should be a singleton", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should be able to handle empty parameters", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return true for Room", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > renders recording playback", "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should only accept valid percentage", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > @room pill", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns light when login flag is set", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > toggles out of editing mode when device name is saved successfully", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand normal notifications", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove in middle of string", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > renders no devices expanded by default", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up for an audio message", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is enabled > passes the flag in to getVisibleRooms", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is same day as current day", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should proxy remove to delete and return it", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > destroys recording for a room if it exists in state", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > updates synced rules when they exist for user", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > global mute", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in start of a second non-editable part, with another one before it", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > maps geolocation position error and calls error handler", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > invokes room activity listeners when the viewed room changes", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return false for a redacted event", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > and a new event appears > should emit the new event", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should add link to next and previous file", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > destroys non-persisted right panel widget on room change", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should capture permalink clicks", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Negative latitude", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should show complete security screen when user has cross signing setup", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > cannot add more than three widgets to top container", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the approve button if the power level is insufficient", - "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for redacted events", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc2516.voice content", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users can see encrypted messages", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message and duration if the call was ended", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room swapped", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > font show ask to join if feature is enabled but cannot invite", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should prompt user if upload failed with UIA", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should untag a room low priority", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction with space", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally true", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM LocalRoom > should render the expected intro", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > insert text into empty document", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no past polls message when there are no past polls in the room", - "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > renders filter container when enabled by UIComponent customisations", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > clamps the interpolant", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return properties which were changed, added, or removed", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation permissions are not granted", - "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders map correctly", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should union 3 arrays with deduplication", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbStart DM anyway\u00ab > should start the DM", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > mention button fires ComposerInsert Action", - "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > reply with voice recording", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo position unavailable error correctly", - "test/unit-tests/editor/position-test.ts::editor/position > move forwards crossing to other part", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render world readable option when room is encrypted", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly orders sequences of transitions by the order of their first event", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound phone number", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when caret is not at the end of the text", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > append text to existing document", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :mailbox", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > renders expanded devices with device details", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > renders url previews correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect localstorage settings", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should ignore reply_to_event for Thread panels", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #localhost:foo.com", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > updates when new polls are added to the room", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is enabled > passes through the dynamic room precessors flag", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:bar.com", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the verified icon", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery panel when key storage is enabled", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > can have different appearance to its heading level", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with one winning answer", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 5", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > toggles playback on play pause button click", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return the right result for known devices", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > emitCurrent > should not emit any event", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for rooms which cannot be obtained via client.getRoom", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > returns specified room when none of the versions is in hierarchy", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show sent & received time on hover if passed", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally false", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room low priority", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs with arrays", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when cross signing and secret storage are ready", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads all state keys", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest second when less than 1min - 59 seconds formats to 59s", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > values() should return an empty iterator", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an explicitly stopped beacon", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns the event for a room message", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Compact correctly", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user inactive if no activity", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if there's an ongoing (pinned) call", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > renders if there is a call", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can auto-join a room", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + modifier key combo", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should support unchecked by default", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders etag_missing", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders spinner while devices load", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with space name", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre menu when the button is clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > encloses the fonts by double quotes and sets them as the system font", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders invalid_code", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders the message button", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render a spinner while loading", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.invite=", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call event is redacted", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is falsy", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A > keys for B", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > should return false if the room has no actual room id", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If two new instances start concurrently, only one wins", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.lowpriority=", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > eats clicks to maplibre attribution button", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 1 (unverified user)", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with unstable m.location msgtype", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected style attributes when avatar url for room is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then does not send, return undefined", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayNoTime > should return a date formatted for en-GB locale", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for undecrypted event", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows deleting keywords", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > expecting errors > throws if crypto is unavailable", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is not supported > renders link to download a desktop client", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should use the provided entries", + "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > calls clean on mount", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > renders event index information", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render suggestions when a query is set", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses serverName from props", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key empty string", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to shared", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for poll start event", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > should render 'Link new device' button in OIDC native mode", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > unpaginates", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > disables guest access toggle when setting guest access is not allowed", "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption verification panel with pending verification", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button custom image reactions correctly", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an ImageBody", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no e2ee well known", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > calls retry when retry button pressed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address and port", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly if its already formatted", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when a theme is selected", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOnlyKnownProfile should return undefined if the profile was not fetched", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should call onTokenLoginCompleted", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no room", - "test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx::LegacyCallViewButtons > should render the buttons", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should open idp in new tab on click", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when secret storage is being accessed", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at end of string", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with help tab selected", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a redacted beacon", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > enters qr code login section when show QR code button clicked", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration request fails", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > renders", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > properly handles replies", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > logs and resets device when update fails", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should create new matrix client with credentials", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale de-DE", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should be able to handle an empty result", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget as an account widget > updates viewed room", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp low numbers", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return undefined for a single target without a room", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > does nothing on non space/enter key presses when no onKeydown/onKeyUp handlers provided", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases with no candidate servers", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves immediately if the user is already a member", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added from A->B", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > notices", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns success if notification level is Notification", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbClose\u00ab > should not start the DM", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders avatar with specified alt text", - "test/unit-tests/WorkerManager-test.ts::WorkerManager > should support resolving out of order", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with unknown algorithm > should show the expected texts", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two members", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 0 (Unknown error)", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show server picker", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > signs out of all other devices from other sessions context menu", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element additions", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include avatars", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from me", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > resets secret storage", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should disable Match system theme", - "test/unit-tests/utils/membership-test.ts::waitForMember > waits for the timeout if the room is known but the user is not", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should allow pasting of text values", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that All filter for ThreadPanelHeader properly renders Show: All threads", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon has a stopping error", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Renders a SendMessageComposer and MessageComposerButtons by default", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return false from VoiceRecording", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > gets available spellcheck languages", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user doesnt have a push rule defined in vector definitions", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return only item when given list of length 1", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Odd", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should ask to set up a recovery key when there is no recovery key", + "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > tries to decode ogg when decodeAudioData fails", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 7 (Sender's verified identity has changed)", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for beacon locations", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit is max", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > including rooms", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return false for LocalRoom", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage", + "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders basic card", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with hyphen in domain part", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns a fake ts for rooms without a timeline", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the topic", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > test with newlines", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hosts", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds decrypted events asynchronously", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > typing with the autocomplete open still works as expected", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same but order different", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.to", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > renders size limit input with default value", + "test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx:: > calls setAvatarUrl when a file is uploaded", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for a visible event", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > getViewRoomOpts > returns viewRoomOpts", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for unknown error", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when the room version is unsupported and upgrade is enabled > should disable the checkbox", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should handle AsyncActionPayload", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request succeeds", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when rendering a DM room with a single third-party invite > should render the \u00bbwaiting for third-party\u00ab view", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should not start the DM", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 5 (Encrypted by an unverified session)", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should be ok if sync store and a rust crypto store", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should disable share button until a source is selected", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when previous version of message's push actions have a highlight tweak", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to connect if the widget returns an error", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should submit using validated config from a valid .well-known", + "test/unit-tests/audio/Playback-test.ts::Playback > stop playbacks", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders authorization_expired", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind a phone number", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > combines the keyChar and text of the suggestion in the query", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > should not report a status event if no changes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > indicates support for notifications", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders voip settings tab when enabled", + "test/unit-tests/editor/history-test.ts::editor/history > push, then undo", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Does not show indent or unindent button when outside a list", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > should render as expected", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is replaced", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > clicking on ongoing (unpinned) call re-pins it", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayISO > should return ISO format", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog if backups and recovery are working", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a string enum", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FT:h", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = false", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should show BulkRedactDialog upon clicking the Remove messages button", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an unencrypted room > should show the expected texts", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (ConnectionError) occurs", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > calls onClick-callback on additionalButtons", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a QR code if the other side can scan and QR bytes are calculated", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should return `cached_title` from API /widgets/title_lookup", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly shows all the information", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > calls onChange when a file is uploaded", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows emoting with non-text parts", + "test/unit-tests/customisations/Media-test.ts::Media > should not download error if server returns one", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with a content body", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > counts one unique vote per user", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should call `termsInteractionCallback` upon M_TERMS_NOT_SIGNED error", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays error if changing display name fails", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete if secrets not cached locally", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should union 3 arrays with deduplication", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render phone numbers", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should call onTokenLoginCompleted", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the primaryEntityId if the search term was a permalink", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects only sessions that are part of the active filter", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English without item limit", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the creation event", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > shows a preview with us as the sender", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should not focus when disabled", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > cleans up redaction listener on unmount", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows the invite button when canInvite is true", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > uses forbidden by default when room has no guest access event", + "test/unit-tests/WorkerManager-test.ts::WorkerManager > should generate consecutive sequence numbers for each call", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=false on non-last event if last event has a receipt from someone else", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should recover from a server exception", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is undefined", + "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does render the permalink", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is not 1 and translates with fallback locale", + "test/unit-tests/Terms-test.tsx::Terms > should not prompt if all policies are signed in account data", + "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the number when it is a number", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when property changes are made", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > does nothing when room tag is not allowed", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return the items in the cache", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > stops existing live beacon for room before creates new beacon", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for should raise an error for a non-matrix.to URL", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > shows toast with unverified devices at app start", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should not render manage integrations section when widgets feature is disabled", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show view in room button when the event is not a thread root", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is false", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders react children", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should work", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests a room whose alias matches a prefix", "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendStickerContentToRoom > should forward the call to doMaybeLocalRoomAction", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should fall back to WebPlatform::setNotificationCount if no Navigator::setAppBadge", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is enabled", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should prompt ask to join", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not explicitly banned by ACLs", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > handles error when updating history visibility", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide experimental extension", - "test/unit-tests/components/views/elements/InfoTooltip-test.tsx::InfoTooltip > should show tooltip on hover", - "test/unit-tests/editor/range-test.ts::editor/range > range replace within a part", - "test/unit-tests/Notifier-test.ts::Notifier > _playAudioNotification > does not dispatch when notifications are silenced", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should scroll event into view when props.eventId changes", - "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time without hours", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with a single message previously pinned", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (https)", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > doesn't stop messaging when connecting", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for text content with an email address", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should work with empty queries", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and clicking \u00bbSign out of all devices\u00ab and \u00bbReset password\u00ab > should show the sign out warning dialog", "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with React function component and translates with fallback locale", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > should render the initial position", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Even", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders display name with a tooltip", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to the loudest synced rule value", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationsEnabled setting is truthy", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show context menu on widget row", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks connection state", - "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking the dial button calls the correct function", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send Legacy cryptoSDK superProperty correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when alt+Enter is pressed", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns devices older than 90 days as inactive", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 2", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders invalid date separator correctly", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using browser font size", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should not render when asked not to", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address for server name", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should send an event when clicked", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return false when no issuer is in session storage", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'minimise' should send the widget to the right", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > shows group call toast", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates ranges on an existing list based on the key if there's no other changes", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if the event is redacted", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders correctly when selected", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders disabled silenced button when call is forced to silent", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when passphrase is filled", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when there are none", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > hides the bar when someone else approves or denies the waiting person", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false when the event was sent by the current user", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state for legacy DontNotify action", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > invite", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should persist credentials", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no experimental extensions are provided by a registered module", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with same previous algorithm > should show the expected texts", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is not enabled > Passes the dynamic predecessor flag to getVisibleRooms", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.server_acl", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when ctrl+enter is pressed when ctrlEnterToSend is true on windows", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > does not add Twemoji font when disabled", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when current device is unverified", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with args", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns a single empty div if room.getMember is falsy", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a beacon that is not live", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > deletes backup after confirmation", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > generates correct mutations for a changed model", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit set in ForceRoomExportParameters is larger than 2000", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should match snapshot when empty", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends private read receipts", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without content body property", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should set the content type to MsgType.Emote when /me prefix is used", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should show the attachment button", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > should be navigable using arrow keys", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > adds relations for a .messages or .effects category command if there is a relation", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Room when user does not have permission to add rooms", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if bug_report_endpoint_url is falsey", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not show invalid terms", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns grey if a thread in the room has a normal notification", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event not sent by current user", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display the generic error message when the roomId doesnt match", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a room has unreads", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > closes sidebar on close button click", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with a custom title and default options", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no right space", - "test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx:: > should render", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div tags when enter is pressed then user types more when ctrlEnterToSend is true", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return a result", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with true if RoomState.newMember fires", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with appearance tab selected", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return the items in the cache", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes longer backticks in between text", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"Unable to decrypt message\"", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not allow device verification on session that do not support encryption", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string", - "test/unit-tests/components/views/auth/RegistrationToken-test.tsx::InteractiveAuthComponent > Should successfully complete a registration token flow", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/foo-bar:server.uk", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on logged in action", - "test/unit-tests/utils/pillify-test.tsx::pillify > should do nothing for empty element", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should not be enabled without config being set", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > updates when the trust status updates", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore is falsy", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (with plain text around)", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.org", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return false for LocalRoom", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for a beacon that is already not live", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the end of the timeline", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > displays poll history when tab clicked", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 1 and translates with fallback locale", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to subspace", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint to issuer when not configured", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by name", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 3", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for fr", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains an invalid geo_uri", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext even if escaped", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with autolinks are not touched at all and are still properly formatted", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should fall back to static config when well-known lookup fails", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is only a predecessor event, it should not count predecessor highlight", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for normal poll start", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should close the release announcement when the TAC button is clicked", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are not backed up", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to true", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > catches and logs errors while updating a rule", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders not logged in message", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should show a toast if the matrix server version is unsupported", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > shows a spinner initially", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Should call wysiwyg function on button click", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if download keys does not return any user", + "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise on onerror call", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not ring when incoming call state is ringing but local notifications are silenced", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > creates static own location share event on submission", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns true if device is verified", "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is trusted, but device is not signed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > calls getCompletions when given a valid suggestion prop", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > does not render invite menu item when UIComponent customisations disable room invite", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > ignores terminated calls", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.to", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds the top answer among several votes", - "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return S-S in narrow mode", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > should return JSONEventFactory for a no-op m.room.power_levels event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @_foonetic_xkcd:matrix.org", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last week", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationBodyEnabled setting is truthy", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call ended cleanly", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev user mentions", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles with additional spaces coming off them", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > quote", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when some secrets are not in 4S", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > dispatches keybackup event when key backup is not enabled", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new phone number", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > usePassPhrase > should use dehydration when enabled", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for an event that becomes visible later", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for highlights", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold for join and leave", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should handle local echos correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace at-room mentions with `@room` in body", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > show account management link in expected format", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should default to name 'Attachment' if file doesn't have a name", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using fallback font size", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > does not meet room requirements if there are not enough rooms", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect crypto version", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept hyphens in name #foo-bar:server.com", - "test/unit-tests/components/views/right_panel/BaseCard-test.tsx:: > should close when clicking X button", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > updates live beacon ids when users own beacons were created on device", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display only the current user", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for normal message", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > failed to connect", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers explicitly denied by ACLs", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return true when an issuer is in session storage", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from SYNCING to RECONNECTING", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return null if the app has no avatar URL", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > userProfilesStore should raise an error without a client", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form without change server link when custom URLs disabled", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles user cancelling during reciprocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > mentions do not propagate", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick candidate servers based on user population", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a persistent app > should render", - "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should accept emoji strings into type=emoji", - "test/unit-tests/utils/export-test.tsx::export > numberOfMessages exceeds max", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with the selected source when share clicked", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after poll ended", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > ends the call immediately if the session ended", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCards > overwrites history", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change the power level of the current user", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays pre-prepared playback with correct playback phase", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message when kicked", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > returns no unsent messages", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a device with no metadata", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is not provided > does not render a link to open the room settings people tab", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions are added after app start", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (M_FAKE_ERROR_CODE) occurs", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general settings tab when no initialTabId", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > hasRecording should return false", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration response is invalid", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows non-radio buttons if the poll is ended", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server even if a local suggestion gets filtered out", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns human readable name", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > should update the playback", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :monkey", + "test/unit-tests/Modal-test.ts::Modal > open modals should be closed on logout", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should aggregate error codes correctly", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Links to the old version of the room", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes English message and localized translated message", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from the current room", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should cache the error and result", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the sticker picker", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should not render pin button when user can't send state event", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when some sessions are already selected", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > renders url previews correctly", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when encryption is force disabled", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > should render the initial position", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and clicking \u00bbRe-enter email address\u00ab > should close the dialog and go back to the email input", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when match system is selected", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no e2ee well known", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is *not* in hierarchy", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element heading", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns light when login flag is set", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send reply to html message", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist credentials", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should throw when query params do not include state and code", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > hides the bold icon when the settings is set", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > wraps single anchor", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should revoke access and refresh tokens", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.emote correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested formatting", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an non-empty and empty array", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a sync error", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not panic if there is no crypto", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch to dark", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > share dialog has correct link in an unencrypted room", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forEvent > constructs a link given an event ID, room ID and via servers", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly identifies transitions", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider provides a ref to the dom element", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > closes sidebar on close button click", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return the intersection", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the approve button if the power level is insufficient", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not capture non-permalink clicks", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display the \u00bbPopout widget\u00ab button", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is not knock", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, both sides of meridian", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > does not update map style when style url is truthy", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should call onChange when custom input is blurred with a number in it", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is not required", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option for beacon_info event", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix-help.org", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, MainMenu adding buttons are hidden", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > doesnt navigate in app when view in timeline link is ctrl + clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains all sub-space's child rooms", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > displays encryption as enabled", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores end poll events from unauthorised users", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > does not render a poll tile when end event is invalid", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if feedback is disabled", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using element call for large rooms", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for old-style version strings", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > enables event indexing on enable button click", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should place calls using managed hybrid widget if enabled", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _t", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999 as 10K", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > handles uploading a room avatar", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when props get changed", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > escaped html", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command category is not .messages or .effects", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight when no version of message's push actions have a highlight tweak", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error fetching the backup version > shows an error", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed message events", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999999 as 1B", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should create keys if they do not exist", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for regular unreads", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no event id", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not identify the user to posthog if anonymous", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are available", + "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should update MatrixClient's state when the setting is updated", + "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the question for a poll I created", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should import exported keys on submit", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > does not render thread button for a beacon_info event", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders join button", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > and setting MessageComposerInput.showStickersButton to false > shouldnot display the button", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing email addresses", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on start", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should treat invalid mxids as empty queries", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near left edge of window", + "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > calls the right callbacks", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally false", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for redacted message", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not report a failure for an event that was reported in a previous session", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with appearance tab selected", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > fits map to bounds", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same", "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights the winning vote in an ended poll", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 0", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (other widget)", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > firing the read receipt event handler with a null event_id calls dispatch with undefined not null", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an empty and non-empty array", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for an URL", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if the thread hasn't a notification anymore", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds up to nearest day when more than 24h - 40 hours formats to 2d", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > may send notifications", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should cancel search on escape", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > listens for incoming call events when voip is enabled", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to invited", - "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should use configured background url", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a JSONEventFactory for a room create event without predecessor", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should link to predecessor room", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open the tooltip when hovering a text", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept hyphens in name @foo-bar:server.com", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts rooms when timeline updates", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render message count input", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery out of sync panel when secrets are not cached", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when the pointers are the same", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with valid data > getRoomIds should return the new room Ids", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing backticks", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Does not show search box when there's less than 20 members", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with non-string body", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return the intersection", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns client information for the device", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render widgets", - "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking a digit button calls the correct function", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > goes to labs flag screen after live options is clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string when keyChar is falsy", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render mobile registration", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = false", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](foobar|)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing up and down arrows allows us to change the autocomplete selection", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a screen source in the default tab", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > updates delayed events", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if pinned events do not contain the event id", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should be able to handle empty parameters", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should create new matrix client with credentials", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads all events", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > doesn't change KEYBOARD_SHORTCUTS when getting shortcuts", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with floats", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides counter for muted rooms", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for special case input", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores all the trailing :", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should favourite a room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > should display the not encrypted status for an unencrypted event when the room becomes encrypted", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server forces enabled encryption", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when discovery and validation fails", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > 'Verify own device' flow > should show 'Waiting for you to verify' after confirming", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button by default", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display all the buttons when the menu is opened", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should scroll event into view when props.eventId changes", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a subspace that was being viewed", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when room already has a recording", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same tag", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows sending double-slash escaped slash commands correctly", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > notification level", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight message where message matches no push actions", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if that is selected", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should enter reset flow when showResetIdentity is set", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are added", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is enabled > Passes the dynamic predecessor flag to getVisibleRooms", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should persist login credentials", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should do nothing on cancel", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > updates when new polls are added to the room", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking left > should skip to minus 5 seconds", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static GIF", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > increments countSeen when toast has bottom priority", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :mailbox", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is enabled > passes through the dynamic room precessors flag", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > only returns events related to a thread", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly renders toast without a call", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > quote", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > mx-reply is stripped", "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > shouldn't change when setting false", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > favourites are added to Notification States for all spaces containing the room inc Home", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is a private space", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns remaining duration", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with surrounding text", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders no votes if none were made", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables sign out button while sign out is pending", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should use permalink_prefix for permalinks", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not clean up listeners even if start was called multiple times", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes last known position after 30s of inactivity", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join disabled > does not render the RoomKnocksBar", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is ended if there is an end event", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with both the legacy and new keys removed", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user _is_ banned", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first valid space when selected metaspace is disabled", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the room's avatar", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > unpins event on pin option click when event is pinned", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects a missed call", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notifications type", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > hides when group calls disabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for pl", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens invite dialog when invite option is clicked", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > should create an encrytped room for 3PID targets", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > doesn't restore member info cards when switching back to a room", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > removes personal information from static self location shares", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element deletions", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return null for 2 targets without a room", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > should not show knock room join rule", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useMyRoomMembership > should update on RoomState.Members events", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons for roomId", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders with correct classes when button has kind", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ActiveRoomChanged when the viewed room changes", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > requests specific config for document domain", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to 0 seconds when less than a second - 123ms formats to 0s", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should not be able to change the power level if `canChangeLevels` is false", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should notify progress", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add mentions that were added in the edit", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to ", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same variable", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders loading message", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room can not be previewed", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for a disabled feature", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is null, shows disabled read receipt button", + "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Unreachable' for presence=unreachable", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should display 3pid email addresses and phone numbers", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > renders when the last message is an undecryptable thread root", + "test/unit-tests/editor/range-test.ts::editor/range > range replace within a part", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should cache translations", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > hides export format input when format is valid in ForceRoomExportParameters", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Image", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not track a failure for an event that was tracked previously", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a room inside of a space that was being viewed", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage with params", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device", + "test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx:: > should open CreateKeyBackupDialog on primary action click", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase pasted in", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Even", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if UIFeature.Feedback is disabled", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for mismatched extension", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when a theme is selected", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions between other events", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint to issuer when not configured", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends plaintext messages correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines mixing paragraphs and line breaks", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should return 0 for values that cause a division by zero", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should automatically close when a modal is opened", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag false on no ordering difference", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button when user cannot send messaged", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should call notifyTimelineHeightChanged() for the same context", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 1 minute formats to 1m", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > fires Action.RoomLoaded", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > watches settings", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps asterisks", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting is false and space changes to a meta space", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > dismisses toast on accept button", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option with selectedLabel", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was added", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > clears the unread flag when viewing a room", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect localstorage settings", + "test/unit-tests/components/views/location/Map-test.tsx:: > renders", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should persist credentials", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and sending receipts is disabled > should send a fully read marker and a private receipt", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to public", + "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a label", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a blank poll", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return true if bug_report_endpoint_url is set and UIFeature.Feedback is true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and no editor ref does not call onChange", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > should return false", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > when viewing a call without a broadcast, it should not raise an error", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should not show server picker", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false without room", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows direct message and mention buttons when member userId does not match client userId", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns false for a non location event", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > calls onClick", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > translated correctly when plural string exists for count", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 6 days ago, but less than 144h", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is encrypted and the url preview is enabled", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/location/Marker-test.tsx:: > uses member color class", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length < B length", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps underscores", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition to current position", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption info panel without pending verification", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links in codeblock are not modified", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is just a room", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should open spotlight when Ctrl+k is fired", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return false for LocalRoom", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added from A->B", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling an at-room completion", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns true for a room that only contains a hidden event", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes display name", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if room not public nor knock and the user cannot change join rules", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should throw when oidcClient could not be initialised", "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for a redacted event", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :grinning", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > dispatches view settings action on preferences event", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with mjolnir tab selected", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > triggers the primary action callback for denied request", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should remap error codes correctly", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > uses my local vote", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is day before the current day", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onSend when Enter is pressed", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 4", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should display or not placeholder when editor content change", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders marker when beacon has location", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example.com\u00ab should return true", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when an event has no sender", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > registers service worker", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.member", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > Can call onNotReady before onReady has been called", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows an active call with back and leave buttons", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should download on click", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > updates delayed events", + "test/unit-tests/UserActivity-test.ts::UserActivity > should extend timer on activity", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction with space", + "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 24 hour mode", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders guest access section toggle", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false if visibility customisation returns false", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return false if event is not unpinnable", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > should return the value \"platform\".\"Electron.showTrayIcon\"", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no right space", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns false when setting value is not true", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > stops sharing on stop button click", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates a loud notification when enabled", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows a warning for an event from an unverified device", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should allow to invite multiple emails to a room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have active class when enabled", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should be enabled if config is set", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > when switching rooms in the all rooms home space don't switch to related space", + "test/app-tests/wrapper-test.tsx::Wrapper > wrap a matrix chat with header and footer", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should prevent \u00bbSettings\u00ab link click from bubbling up to radio buttons", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims from localStorage", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme on onload call", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw if user_id is missing from response", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=offline", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return false for a non pinnable event type", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should render the custom theme section", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if set false and existing event is false", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with no \"others\"", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when no session data is found in local storage", + "test/unit-tests/Notifier-test.ts::Notifier > onEvent > should not evaluate events from the thread list fake timeline sets", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.audio for audio files", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > without requests to join > renders a paragraph \"no requests\"", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list starting later", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to false when setting false", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon has no location", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > ordered lists", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > cannot be disabled", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders div with role button by default", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room without predecessor", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls fetch when data types has text/html and data can parsed", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return false for LocalRoom", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on logged in action", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders unverified devices section when user has unverified devices", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in managed hybrid environments", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display only the home and preference buttons", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders other sessions section when user has more than one device", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should put unknown app version if on dev", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and the playback proceeds > should render as expected", + "test/unit-tests/WorkerManager-test.ts::WorkerManager > should support resolving out of order", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should support custom clone functions", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > should not display the button", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for no relation when not passed one", + "test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts::viewUserDeviceSettings() > dispatches action to view session manager", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu with all the options", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is in secret storage", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts a single vote as normal if the poll is ended", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have data-is-expanded when it has two lines", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > clears filter from no results message", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > values() should return the items in the cache", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if client cannot send state event", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should scope the location for a widget when setting OIDC state", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 6 (Not encrypted)", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call lobby is viewed", + "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display an error icon when in error", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has knock style", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should overwriteAccountAuth", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > does nothing when there are no toasts", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > handles the bot notice inversion correctly", "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is in hierarchy", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return true for Room", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores duplicate :NUM (double port specifier)", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.file event type", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct < 0", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be enabled", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if label is unset", - "test/unit-tests/utils/export-test.tsx::export > maxSize exceeds 8GB", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should handle no email addresses", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add three widgets to top container", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child favourites", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes the toast", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string exists but not for for count and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Links to the event in the room if event ID is provided", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > replacements in the wrong order", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > buttons are disabled if there is an ongoing call", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for 2 targets with a room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > highlights when message's push actions have a highlight tweak", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should be predictable with double underscores", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > typing with the autocomplete open still works as expected", - "test/unit-tests/Terms-test.tsx::dialogTermsInteractionCallback > should render a dialog with the expected terms", - "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > does not render the room options context menu when UIComponent customisations disable room options", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should group hidden event reactions into an event list summary", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption unavailable > should create an unencrypted room", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should have disabled submit button initially", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with a non-thread relation > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert multiple new lines into existing document", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result does not include homeserver config", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A single instance starts up normally", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render email addresses", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a heading with count", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google Nexus 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text description", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the release announcement", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders join button", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return true for Room", + "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should ordering by the provided key order", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.1 Simple 3-dimensional", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > opens the chat panel if there are unread messages", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Lists all rooms that the client says are visible", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string for a falsy argument", + "test/unit-tests/stores/AutoRageshakeStore-test.ts::AutoRageshakeStore > when the initial sync completed > and an undecryptable event occurs > should send a to-device message", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > creates pin drop location share event on submission", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a cancelable status", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders email mismatch message when invite email mxid doesnt match", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains m.location with valid uri", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with changed power level", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the end of the timeline", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on start()", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > disables all rooms in home setting when home space is disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens share room dialog on button click", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > honours m.space.parent if sender has permission in parent space", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render anything if the type cannot be detected", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from someone else to me", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > cancelling edit switches back to original display", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to the default", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to true for all of them, it should return true", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return true if pinned events contains the event id", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes multiple devices", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no room", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown devices", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return true for pinnable event types", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > starts watching position", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > show account management link in expected format", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > sets instance on window when doesnt exist", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders non-default timeout as selected option", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > turns html tags back into markdown", + "test/unit-tests/utils/createVoiceMessageContent-test.ts::createVoiceMessageContent > should create a voice message content", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect logs", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting an unkonwn item should not raise an error", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > updates map style when style url is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the notifications panel", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls addReplyToMessageContent when there is an event to reply to", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track any events if disabled", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should set and return container height", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to get pickle key", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is rejected", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = true", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with no previously pinned messages", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching push rules fails", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbRe-enter email address\u00ab > go back to the email input", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should create a new object", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > calls onFinished when cancel button is clicked", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user without timestamp > and the current user adds a Jitsi widget > should not remove the last widget", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not touchInput", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit and includeCount", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for a UTD event", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect custom fields", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > favourites are added to Notification States for all spaces containing the room inc Home", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a LocalRoom > should not show the stickers button", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces encryption", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCountLong > formats numbers according to the locale", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; U; Android 6.0.1; SM-A510F Build/MMB29; Flavour GPlay; MatrixAndroidSdk2 1.0)", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > handles invalid centerGeoUri", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > a threaded receipt for the event makes the room read", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string does not exists at all", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing for muted channels", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns default for other error", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known does not promote encryption > should return false for a DM room with one third-party invite", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return mapping for develop version string", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout if the client is not viable", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for people -> all transition", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes subsequent positions", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > succeeds when no synced rules exist for user", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should log error and return to welcome page when userId lookup fails", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with an empty array, it should return false", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a pill with an unknown type", + "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should maintain the pointer to the given array", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > sends a request even if everything has been read", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > calls showJoinRoomError()", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should has placeholder", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > doesn't end the call when the last participant leaves", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits to unknown events", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for room links with vias", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > and setting MessageComposerInput.showPollsButton to true > shouldtrue display the button", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when cancel is clicked", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return true for Room", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with non-string body", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should display the deactivate account dialog when clicked", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up *eventually* when the first terminated uncleanly", + "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should maintain the pointer to the given map", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key and the legacy key undefined", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks connection state", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not focus when disabled", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rendering PiP content 2 > should update the PiP content", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should reset liveliness error when server config changes", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Watches the feature flag setting", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for an uknown user not in the room", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > displays a spinner after submitting", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the threads panel", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should display oidc-native continue button", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should enable theme selection when system theme is disabled", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = Element Desktop: macOS", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at middle of single line", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render a loader while loading", + "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows the presence indicator in a DM room that also has functional members", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect device keys", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > unignores the user", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with useRovingTabIndex", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > renders addresses section", + "test/unit-tests/stores/notifications/NotificationColor-test.ts::NotificationLevel > humanReadableNotificationLevel > correctly maps the output", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > hides the bar when someone else approves or denies the waiting person", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999999 as 100M", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > just a code block", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if that is selected", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with autolinks are not touched at all and are still properly formatted", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an expired beacon", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty body should return null", + "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > should show some emojis once keys are exchanged", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should cancel edit on cancel button click", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that All filter for ThreadPanelHeader properly renders Show: All threads", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > renders nothing when user has no live beacons", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for unsent event", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for admin contact links", + "test/unit-tests/email-test.ts::looksValid > for \u00bba@b.org\u00ab should return true", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles master switch correctly", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isNew should return false", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > resets secret storage", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > failed to connect", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not store clientId or issuer", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with a replace relation", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching pushers fails", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not render any own beacon status when user is not live sharing", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with stable m.location msgtype", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Odd", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > submits location", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if functional members state event does not have a service_members field", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with defaults", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace user mentions with user name in body", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing up and down arrows allows us to change the autocomplete selection", "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should not create a public room without an alias", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock count is greater than 3 > renders a paragraph with two names and a count", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > throws with unavailable error when geolocation is not available", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Rooms are in sorted order after initial seed", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near right edge of window", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > renders container", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders an empty context menu for archived rooms", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should show all activated MetaSpaces in the correct order", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with an unverified session", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not renders user timezone if timezone is invalid", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns when removing a room that is not indexed", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > can call in large rooms if able to edit widgets", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of unreads", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Tolerates multiple, repeated inserts of existing rooms", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is day before the current day", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be healthy if no indexeddb", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert multiple new lines into existing document", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should be empty by default", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return true for Room", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should return accessToken, configured homeserver and identityServer", "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders key icon", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I have not voted", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when onChange promise rejects", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request succeeds", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon when clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when meta+Enter is pressed", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed state events", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are some functional room members > should only return the non-functional members", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the main timeline", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline code", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live but has a latestLocation", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add a phone number", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add room button when UIComponent customisation allows CreateRoom", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for an enabled feature", - "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders null when no location", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > does not render a poll tile when end event is invalid", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a combobox and attempts to change power level on change of the combobox", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with dots in name", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to preset value when custom input is blurred blank", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no default property", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped html", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not render if not wrapped in room context", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should reload when changing language", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for non-video mimetype", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Denied for a widget", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should recover from a server exception", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for IE", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving a reply_to_event action", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completionId if present in the completion", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place according to key index", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is displayed with the setting enabled", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > values() should return the items in the cache", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the other member has no avatar URL", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false for the same pointer", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return true for Room", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct > 1", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > creates static own location share event on submission", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; U; Android 6.0.1; SM-A510F Build/MMB29; Flavour GPlay; MatrixAndroidSdk2 1.0)", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates desktop notification when enabled", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates users state when a member is added", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display the children if there is no user to display", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should have disabled submit button initially", - "test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx:: > renders a QR code", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns true when platform supports notifications", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from RECONNECTING to ERROR", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to false for all of them, it should return false", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload to install update", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > returns null for unknown events", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks containing markdown", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when UIComponent.InviteUsers customisation hides invite", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return false if client cannot send state event", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should not show spell check setting if unsupported", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should noop when selecting no file", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :heart", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns max values if content size is not specified", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > excludes malformed responses", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when some feature is in beta", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knocked to the room", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > is silent about the top answer if there are no votes", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button does work as expected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams is missing relation", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > removes listeners", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should continue to post login setup when no session is found in local storage", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverified device", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > handles when room is a space", + "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for redacted events", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMemberCount > should update on RoomState.Members events", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return true when user can invite and is a room member", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.video for video files", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately when there were already live beacons", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with all behaviour", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should call the onResetIdentityClick callback when the reset cryptographic identity button is clicked", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > opens context menu on create space button click", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :hand", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > should display message if crypto is not available", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > lets you click it", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows call details and connection controls if the call is loaded", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message and a load more button when not at end of timeline", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting changes", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a 'Start' button", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept :NUM (port specifier)", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > hides unpinnable events not found in local timeline", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > opens sidebar on view list button click", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > allows dots in localparts", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event not sent by current user", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > initiates map with geolocation", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no vote event when I click what I already chose", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > updates component on decrypted event", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbClose\u00ab > should not start the DM", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow removing multiple devices at once", + "test/unit-tests/createRoom-test.ts::createRoom > sets up Jitsi video rooms correctly", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width", "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should render section when account deactivation feature is enabled", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should have a waveform, a seek bar, and clock", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > renders", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with an unread message in a thread", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are unpinned", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to restricted", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > rings when incoming call state is ringing and notifications set to ring", - "test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx::JumpToDatePicker > renders the date picker correctly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: File > should not display the pinned message badge", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 0 to 0s left", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as status if valid", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not leak javascript from room names or topics", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:com (mostly for (TLD|DOMAIN)+ mixing)", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect customApp", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in private room", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should clear the timezone when the publish feature is turned off", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > clicking on a mention in the composer dispatches the correct action", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should not enable for anyone if percentage is 0", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone; iOS 15.2; Scale/3.00)", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog when crypto is disabled", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > resets on cancel", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > throws for an unhandle update cause", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when no device is available > should log the error and show the \u00bbNo media permissions\u00ab modal", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when adding a mention", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room using values set from ForceRoomExportParameters", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after a spoiled ballot", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room IDs and via servers", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room an be previewed", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should cancel the dialog from within the dialog", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly persists state to and from localStorage", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text deletions", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is undefined, uses .events_default", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display a dialog if password change succeeded", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a multiple power level changes", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include reactions", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should not parse #foo without domain", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens thread on click", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a verified device with no metadata", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > renders text and placeholder correctly", + "test/unit-tests/UserActivity-test.ts::UserActivity > should return the same shared instance", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not pushrules", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns client information for the device", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first containing space for room", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays error when device name fails to save", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a loading state when the encryption state is computed", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should tag a room low priority", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Opens room inviter on button click", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > after a session is restored", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when user is not a member", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is undefined", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions when a beacon fails intermittently", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally false", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > does not render non-beta labs settings when disabled in config", + "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when not animated", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon with a location correctly", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (input pos)", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when config is invalid JSON", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should not abbreviate if has path parts", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens space settings when space settings option is clicked", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Unregister works as expected", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders emoji and upload buttons in wide mode", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given no room ID and not viewing a room", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverifiable device", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > on location updates > updates last updated time on location updated", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when called with an empty array, it should return false", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a web device type", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (invite)", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > honours the hour format setting", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button custom image reactions correctly", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show modal if error is encountered", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally true", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button and the display label", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > updates when the trust status updates", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render mobile registration", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 2 days ago", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > unordered lists", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should complete an sso flow", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :sweat", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > caret resets correctly to current line when untoggling formatting while caret at line end", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a second non-editable part, with another one before it", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not raise an error on getPendingEvents (implicitly check for pendingEventOrdering: detached)", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should show dialog if some encrypted rooms", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds votes from multiple people", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should handle decimal versions", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should hangup all legacy calls", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no room", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added and removed in the same set", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should generate a thumbnail if one isn't included for animated media", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mentions only", + "test/unit-tests/components/structures/MessagePanel-test.tsx::shouldFormContinuation > does not form continuations from thread roots which have summaries", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for an event that becomes visible later", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > disables Add Room when user does not have permission to add rooms", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the HTTP source if the room provides a MXC url", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage for invalid input", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not explicitly banned by ACLs", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should access to 4S and call onFinish when 'Enter recovery key' is clicked", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > renders world readable option when room is encrypted and history is already set to world readable", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should not mangle code blocks", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct > 1", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for beacon_info event", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > should resolve the promise after invoking the callback", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::getPowerLevels > returns an empty object when room.currentState.getStateEvents return null", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create space dialog on add space button click", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > hides the message button if the visibility customisation hides all create room features", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a newline work", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect user id", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders error message when history update fails", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (M_FAKE_ERROR_CODE) occurs", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Curl Client/1.0", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > showRoom > shows room", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if subheading is unset", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders marker correctly for a self share", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render inline katex", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to private", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should support optional thumbnail params", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should not clean up drafts before expiry", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on initial load", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > should return the profile from the API and cache it", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room is not public", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for poll start event", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should display an edited pinned event", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > renders", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and '.m.room.message' are defined, uses the value", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > disables button correctly", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > does not update on other account data", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example\u00ab should return false", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > generates correct mutations for a changed model", + "test/unit-tests/vector/routing-test.ts::init > should call showScreen on MatrixChat on hashchange", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple users", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hosts", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and a valid editor ref calls onChange with the editorRef innerHTML", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display the children if there is no user to display", + "test/unit-tests/editor/history-test.ts::editor/history > undo after keystroke that didn't add a step is able to redo", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when updateSpace is called", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace room mentions with room mxid in body", + "test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx:: > renders", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, PlusMenu add buttons are disabled", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > renders user labels correctly", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display the generic error message when the roomId doesnt match", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should order the room with the same notification level by most recent", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple variable substitution and translates with fallback locale", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops watching position when user has no more live beacons", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > should parse html iframe snippets", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should retain backslashes", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to connect backup if there is a backup on the server", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > uses cached aggregated rooms", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget with stickyPromise > should wait for the sticky promise to resolve before starting messaging", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should only clone the top level properties", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the other member's avatar URL", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains orphaned rooms", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > should display the button", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near right edge of window", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > onLoggedOut should clear the UserProfilesStore", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding message", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest valid unknown MXIDs", + "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > reply with voice recording", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > removing whole string", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to canonical parent space for room", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the dial pad when the dial button is clicked", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > sets topic", + "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information without url for electron clients", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @localhost:foo.com", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can create email pushers", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a room alias permalink", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders map without markers when no live beacons remain", + "test/unit-tests/Rooms-test.ts::setDMRoom > when the direct event is undefined > should update the account data accordingly", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning rejects", "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; SunOS i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: SunOS", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns the latest location event for a live beacon with location", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > should render the expected pill", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns correct results after final colon :o", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :bow", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/jpeg", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if #roomMention is surrounded by text", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should insert the read-marker in the right place", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a non-permalink", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > appends the phase to any phases that were there before", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should dump debug logs on Action.DumpDebugLogs", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > handles error when updating join rule fails", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile if there are via servers", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps underscores", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the creation event", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > should listen to showUrlPreview change", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :cop", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > updates > updates on decryption within 1s", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the item in the middle should work", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Tolerates multiple, repeated inserts of existing rooms", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing email addresses", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > does not include pending root event in the timeline twice", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999 as 1M", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects an ended call", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user not found via API should return null and cache it", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns false when platform does not support notifications", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > SetFocus works as expected", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Regenerates all lists when the feature flag is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentListToRoom with eventRelation when present", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > calls onClick handler on click", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > history is generated for certain phases", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should create and start new matrix client with credentials", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > @room pill", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist device language when available", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > updates markers on changes to beacons", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to preset value when custom input is blurred blank", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, west of meridian", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > should return undefined if no room shared with the user", + "test/unit-tests/vector/routing-test.ts::onNewScreen > should replace history if stripping via fields", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for sticker event", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when the pointers are the same", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to top level space", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with people", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should ignore reply_to_event for Thread panels", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > oidcClientstore should return a OidcClientStore", + "test/unit-tests/email-test.ts::looksValid > for \u00bb\u00ab should return false", "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished without parameter when Done is clicked", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders message count input with default value 100 when export type is lastNMessages", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested formatting", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should pass event to posthog", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device id as fallback when device has no display name", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does show copy link button when supplied a link", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > renders size limit input with default value", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > correctly interpolates", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > excludes rooms that are not found by matrixClient", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling off", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > ignores other account data events", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should reject with usage for invalid input", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to connect backup if there is a backup on the server", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Calls onLogoutClick", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with 1 \"other\"", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls kick on deny", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getMediaConfig > gets the media configuration", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly handles audible keywords without mentions settings", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple variable substitution and translates with fallback locale, attributes fallback locale", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > creates a new list based on the key", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme by default", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > fetches the related poll start event and displays a poll tile", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when no static clientId is configured and no registration endpoint", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect knock rooms in v7 and above", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > cancels my local vote if another comes in", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > initiates map with geolocation", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.favourite=", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should return static clientId when configured", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 0", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> home transition", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room with no parent spaces or members when changing join rule to restricted", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should show restricted room join rule when upgrade is enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should send message on save button click", - "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should fall back to camelCase keys when needed", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should not parse #foo without domain", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw if user_id is missing from response", - "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > calls clean on mount", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should render results when the promise resolves", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does shows context menu when right-clicking options", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders only some buttons in narrow mode", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > should render the room", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > does not emit filter changed event on store update when nothing changed", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > in empty line", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates url preview visibility on encryption state change", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 1-12 in numeric mode", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should set join rule to public defaultPublic is truthy", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is undefined", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if subheading is unset", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > does not dispatch when notifications are silenced", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an non-empty and empty array", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > adds a toast to an empty store", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forRoom > constructs a link given a room ID and via servers", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon is not live", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > renders if there is a call", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > doesn't allow submitting until there are options", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show oidc-aware flow for oidc-enabled homeserver when oidc native flow setting is disabled", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > doesn't show ask to join if feature is disabled", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are granted", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button when user cannot send messaged", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > gets available spellcheck languages", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Audio", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = false", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room member list on button click", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (with plain text around)", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should show error if unable to load", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > disables room preview toggle when history visibility changes are not allowed", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > should show the email input and mention the homeserver", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders a button element", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a reply using a slash command", - "test/unit-tests/createRoom-test.ts::createRoom > correctly sets up MSC3401 power levels", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders authorization_expired", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to max", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should call onSelectionChange() when an item is removed from selection", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not call getCommand for valid command with invalid prefix", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > expands current session details", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons with timestamps before beacons without", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > translates a basic string and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return true for Room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with labs tab selected", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for emote event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if there is a command surrounded by text", + "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new DM room > should update the account data accordingly", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist credentials", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom in on zoom in click", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > renders audio processing settings", "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders element replacements", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display Close list button if the message pinning list is displayed", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 2 (device not verified by its owner)", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 0 unreads, getHiddenHighlightCount should return 0", - "test/unit-tests/utils/colour-test.ts::textToHtmlRainbow > correctly transform text to html without splitting the emoji in two", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :sweat", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Lists all rooms that the client says are visible", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is only a predecessor event, it should not count predecessor highlight", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends only one vote event when I click several times", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > flush > should clear profiles, known profiles and errors", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > sets and displays audio processing settings", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_not_found", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return true for Room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls addReplyToMessageContent when there is an event to reply to", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders sound on button when call is silenced", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > values() should return the items in the cache", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should call `termsInteractionCallback` upon M_TERMS_NOT_SIGNED error", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should reuse the result", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 23 to 23s left", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a live beacon that does not have a location", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button on non-actionable event", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Samsung SM-G960F; Android 6.0.1; RKQ1.200826.002; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to unknown space is a nop", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'set up recovery' toast", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up our own device if we're disconnected", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room with dynamic predecessor", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows reply button when we can reply", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should start the DM directly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not panic if there is no crypto", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > activity renders unread notification badge", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is not a number", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 0 to 0s left", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse mixed keyword notifications", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint when configured", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with no arguments if cancelled", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns remaining duration", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected style attributes when avatar url for room is falsy", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user removed", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns activity if a thread in the room unread messages", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render export type when set in ForceRoomExportParameters", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the deny button if the power level is insufficient", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > doesn't show ask to join if feature is disabled", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation is unavailable", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking back button from location picker screen goes back to share screen", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle large numbers of hidden events quickly", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Odd", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with keyboard tab selected", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to request to join", + "test/unit-tests/theme-test.ts::theme > getOrderedThemes > should return a list of themes in the correct order", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content without error style when map_style_url is not configured", + "test/unit-tests/Terms-test.tsx::dialogTermsInteractionCallback > should render a dialog with the expected terms", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/jpeg", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element dbg/1.5.0-dev (Xiaomi Mi 9T; Android 11; RKQ1.200826.002 test-keys; Flavour GooglePlay; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes as normal if the poll is ended", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > and setting MessageComposerInput.showStickersButton to true > shouldtrue display the button", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should throw when room for message is not found", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > does not render space header when room is not a space room", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :golf", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button when user cannot react", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should work with empty queries", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > swaps to the replied event room if it is not the current room", + "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > does not render the room options context menu when UIComponent customisations disable room options", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when beacon has no related locations", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a hint", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should convert HTML entities", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object pointer", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset type", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if we have an existing suggestion but no command match", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 3", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > should render the expected pill", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns the event for a location event", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if now guest spa link is configured", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji when a word is selected", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > disables room preview toggle when history visibility changes are not allowed", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders simple word changes", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if there's already a call", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should attempt to register oidc client", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for orphans -> all transition", + "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens with a pickle key", + "test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx::LegacyCallViewButtons > should render the buttons", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) electron/1.0.0 Chrome/53.0.2785.113 Electron/1.4.3 Safari/537.36 = Element Desktop: Windows", + "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if user lacks permission", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should keep RoomUpload's total and loaded values up to date", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with a content body", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all unverified devices button works", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes angle brackets", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the warning icon", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 83 to 1m 23s left", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with react node and translates with fallback locale, attributes fallback locale", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > updates room state when connecting and disconnecting", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a window source in the window tab", + "test/unit-tests/theme-test.ts::theme > enumerateThemes > should be robust to malformed custom_themes values", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > shows a public room label for a public room", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setup > uses the baseUrl", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error when no event index is found and enabling not in progress", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls getCommand for a message starting with a valid command", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to SSO login", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should default to 50 if no powerlevel specified", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room running into the create timeout > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by name", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders a dropdown option for a non-default timeout value", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > setActiveRoomInSpace > should work with Home as all rooms space", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes back to default style when wire errors are cleared", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders settings marked as beta as beta cards", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not current user", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > keeps sharing positions when geolocation has a non fatal error", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables all buttons with disabled prop", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when there is no Crypto available", + "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should not accept emoji strings into type=plain", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on element differences", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > throws with unavailable error when geolocation is not available", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TT:h", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > displays an error when session display name fails to save", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when child room is added", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f emoji", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect support properly", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to disconnect if the widget returns an error", "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight message where no version of message matches any push actions", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should show an error dialog when no homeserver is found in local storage", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > renders the date separator correctly", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > calls showJoinRoomError()", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > doesn't clean up valid devices", - "test/unit-tests/components/views/location/shareLocation-test.ts::shareLocation > should forward the call to doMaybeLocalRoomAction", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > does not race with lazy loading", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=true", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > can render replies", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon without a location correctly", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should re-render favicon when setting error status", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go straight to logged in view when user is not in any encrypted rooms", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested quotations", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isCreated should return false", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > get() should return undefined for an item not in the cahce", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if it is not a paste event", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should aggregate error codes correctly", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render same modifier twice", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow pasting the same user multiple times", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after joining", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should call MatrixClient::setPassword with expected parameters", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders rate_limited", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not call getCommand for valid command with invalid prefix", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added and removed an alt aliases", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should not show more than 100 messages", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status invalid-status", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > does not open maximised map when on click when beacon is stopped", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a refresh token", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > returns deviceType unknown when user agent is falsy", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > and setting MessageComposerInput.showPollsButton to false > shouldnot display the button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > falls back to the completion for a room if completion starts with #", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape backslash in placeholder", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should convert HTML entities", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should not render a room with a activity in the TAC", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders close button correctly when encryption panel with a pending verification request", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should not has placeholder", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should reset liveliness error when server config changes", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > getAppVersion returns normalized app version", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message when there are no active polls in the room", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term was not a permalink", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from users who change identities after verification", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button and clicks explore public rooms", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should close the release announcement when the TAC button is clicked", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader properly opens a context menu when clicked on the button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Should have contentEditable at false when disabled", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set for unknown users", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > clears the unread flag when viewing a room", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds down to nearest day when more than 24h - 26 hours formats to 1d", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see removed from A->B", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render suggestions when a query is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content does not contain any mention or command characters", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the pusher status when clicked", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate if the device is flagged as migrated", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse adjacent member events", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not leave/ban", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly identifies transitions", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > should display message if crypto is not available", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should create oidc client correctly", - "test/unit-tests/utils/exportUtils/JSONExport-test.ts::JSONExport > should have a Matrix-branded destination file name", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.archived=", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with geolocation error when geolocation.getCurrentPosition fails", - "test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx::RoomStatusBarUnsentMessages > should render the values passed as props", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add fields related to edition", - "test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx::PinnedMessageBadge > should render", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should return clientId from localStorage", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return true for Room", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and emits beacon liveness changes from true to false", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > clears all notifications", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > markdown-like symbols", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders advanced settings tab when enabled", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > dropping text does not trigger auto-complete", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > clear() should clear the cache", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests a room whose alias matches a prefix", - "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should use inviter's id when room member is not available", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > doesn't end the call when the last participant leaves", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should fall back to /download/ if /thumbnail/ fails", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders with children", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > updates on event decryption", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > enables encryption after confirmation", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist credentials", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles full cycles", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills with interesting characters in mxid", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > always shows share user button and clicking it should produce a ShareDialog", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for poll start event", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple invites", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders a poll", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct buttons when definitions have checked prop", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > does not call showJoinRoomError() when canAskToJoin is true", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > updates when roomId prop changes", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> orphans transition", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should not clean up drafts before expiry", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with args", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > don't sort the order of users sent by the server", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if everything was forgotten", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are not backed up", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > should show CreateSecretStorageDialog if forceReset=true", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > works if a room is specified", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the start when all is undefined", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor in the create event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > opens delegated auth provider to sign out a single device", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > resets the model correctly", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show continue button when oidc native flow is correctly configured", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.image event type", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly it contains varying length of backticks between text", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should deduplicate a single array", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when UIComponent customisations disable room options", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll edit event when editing", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is a private space", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should roll back power level change on error", + "test/unit-tests/Reply-test.ts::Reply > stripHTMLReply > Removes from the input", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns null for a non-location event", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when crypto is not enabled", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides unread notification badge", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally true", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should display public rooms when searching", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were pinned", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with people filter", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite more than one email to a DM", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns when removing a room that is not indexed", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist access token when idb is not available", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when user does not have cross signing keys and server does not support cross signing", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should listen to the right panel", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a #roomMention is followed by other text", + "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > defaults target and rel", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should clear the error", + "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback on from stopped state", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > and a room encryption state event > should return true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when caret is not at the end of the text", + "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > Sets up appropriate callEventGrouper for m.call. events", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sets layout", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create room dialog on add room button click", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for double slashed command", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate e2ee URL previews on a fresh login", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated WEBP", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client when creating token refresher fails", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key", + "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_config", "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map display is not configured properly", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for FR", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be healthy if no indexeddb", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > start ringing on ring notify event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string for a falsy argument", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a private space > does not render addresses section", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest users from other server when room has m.federate=false", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > allows dots in localparts", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > versions > calls install update", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text", - "test/unit-tests/components/views/avatars/MemberAvatar-test.tsx::MemberAvatar > shows an avatar for useOnlyCurrentProfiles", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the sticker picker", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should display an error if the link has not been clicked", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should be a singleton", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length < B length", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have contentEditable at false when disabled", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backslashes", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an VideoBody", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show reply button when we cannot reply", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.video event type", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > renders stop button", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return true", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > calls onClick handler on click", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts room notification type", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include reactions", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverified device", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when calls to client.getRoom and room.getEventReadUpTo are non-null, shows read receipt button", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not call the callback if it\u2019s disabled", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > should not render banned section when no banned users", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > does not update synced rules when main rule update fails", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of the current user", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats without seconds", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return token from localStorage", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic with emoji to HTML", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should debounce quick changes", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with line breaks", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader has the correct option selected in the context menu", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the verification requirement is withdrawn", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are not backed up", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the matrixRTC session has ended", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders timeout as selected option", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > marks the room as read even if the receipt failed", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with args", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should revoke access and refresh tokens", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > shows ask to join if feature is enabled", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > if rooms should not be encrypted > should create an unencrypted room", + "test/unit-tests/createRoom-test.ts::createRoom > should strip self-invite", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should intercept clicks with a ViewRoom dispatch", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect restricted rooms in v9 and v10", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is disabled if there is an other ongoing call", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not render device verification cta when current session is not verified", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for MatrixError M_NOT_FOUND", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > should render the room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should display an error when trying to continue with an empty homeserver field", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > looks as expected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills with interesting characters in mxid", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender and get sender", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unverified device", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards pin drop event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send empty html message", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should render when asked to", "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should roll over", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames ending in a backslash work", - "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if user lacks permission", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted and later becomes visible", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout IRC correctly", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return Jan-Dec in short mode", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects only sessions that are part of the active filter", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org/e/event?via=elsewhere.ca", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should still attempt to revoke refresh token when access token revocation fails", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows edit button when we can edit", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > should log the invalid content", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally false", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > toggles device expansion on click", - "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > tries to decode ogg when decodeAudioData fails", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > spoiler", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > with an existing widgetApi with requiresClient = false > should display the \u00bbPopout widget\u00ab button", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not generate previews for rooms not rendered", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when shouldThrow = true and there is an error it should raise an error", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not update bounds or center on changing beacons", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > should render the PiP content", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should return to default view if adding is cancelled", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when current user membership is not joined", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 10s if window un-focused", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > ignores events for irrelevant beacons", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > video room space contains all video rooms", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle resolutions after unmounting sanely", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when show_labs_settings is enabled in config", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify an MXID permalink", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in both hemispheres", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > dismisses itself once the request can no longer be accepted", - "test/unit-tests/utils/objects-test.ts::objects > objectClone > should deep clone an object", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline styling", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationPositionToTimedGeo() > maps geolocation position correctly", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > does nothing when there are no toasts", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 1-parent variant", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if the offset is outside the content length", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with dynamic predecessor", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the invite button will call MultiInviter.invite", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should work with empty queries", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same tag", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default encryption setting is set to something other than false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is /", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with a soft-logged-out session > should show the soft-logout page", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > indicates support for spellcheck settings", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is the exact same moment", - "test/unit-tests/editor/range-test.ts::editor/range > range trim spaces off both ends", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Even", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TF:h", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return true from VoiceRecording", - "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should force the setting to be disabled if disable_fallback_ice=true", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for release version strings", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have been offline for too long", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time & date string without year if it is within the same year", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should not focus when disabled", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event does not contain geouri", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have hover style when hovered and reversed", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > sets instance on window when doesnt exist", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for non public room", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders marker correctly for a self share", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send html message", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns true when setting value matches incompatible value", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace room mentions with room mxid in body", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with hyphen in domain part", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with private visibility", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > breacrumbs > should send breadcrumb updates over the IPC", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly rejects quick reaction with extra text", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > removes avatar", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 4", - "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does render the permalink", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should call notifyTimelineHeightChanged() for the same context", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders an error message", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for LocalRoom", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object pointer", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for a disabled feature", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated GIF", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected attributes when avatar url for room is truthyf", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child favourites", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should open forward dialog", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return true if the app is in the container", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > does not change parent hook state if suggestion is null", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > does not add Twemoji font when disabled", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live", + "test/unit-tests/components/views/location/MapError-test.tsx:: > does not render button when onFinished falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div tags when enter is pressed then user types more when ctrlEnterToSend is true", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles no spaces", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should return usage if no args", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > people", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when getRelationsForEvent is falsy", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm error > should set the room state to error", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect customApp", + "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with react description", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders the default context menu", + "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > does not crash when given a portrait image", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > initialises correctly with no beacons", + "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > does not show filter container when disabled by UIComponent customisations", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alt alias if found", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > does not return a leading 0 for single digit days", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999999 as 10B", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbRightPanel.phases\u00ab", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles other errors", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notification type", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns undefined when there is no initial screen in session storage", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should remove the last added selection when backspace is pressed in empty input", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key with an empty m.topic key", "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at end of last line", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when removed an alt alias", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > allow typing e-mail addresses without splitting at the @", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should show BulkRedactDialog upon clicking the Remove messages button", + "test/unit-tests/Reply-test.ts::Reply > stripPlainReply > Removes leading quotes until the first blank line", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are not backed up", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if @userMention is surrounded by text", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org?via=elsewhere.ca", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-ie", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom() and sets promptAskToJoin state to false", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > linkification is not applied to code blocks", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should retry if initial attempt failed", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no crypto", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an unknown email > should show an email not found message", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > handles error when updating join rule fails", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > keeps the original timestamp after repeated decryption failures", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a redacted beacon", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders when silence button when call is not silenced", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders advanced settings tab when enabled", + "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > Return undefined with an empty TZ", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile linking to an event if there are via servers", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > deletes backup after confirmation", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > opens poll history dialog on button click", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat three arrays", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are left", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > renders notifications matching the snapshot", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with home behaviour", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders expired", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user not found via API should return null and cache it", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is disabled, it should not render the developer tools option", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room threads list on button click", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return false for LocalRoom", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.server_acl", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Odd", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Odd", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is the exact same moment", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should listen to release announcement data changes in the store", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > sets map center to centerGeoUri", + "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > updates the call's skipLobby parameter", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if there is no room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders voip tab when voip is enabled", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room removed", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room as favourite", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > uploadFile > uploads a file", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support inline katex", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > listens for client events", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > should render as expected", + "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a TextInputField", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > mention button fires ComposerInsert Action", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > Dismiss toast if user starts call and skips lobby when using shift key click", + "test/unit-tests/editor/history-test.ts::editor/history > overwriting text always stores a step", "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should call onTokenLoginCompleted", - "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback on from stopped state", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empty object as valid content", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should clear storage", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting within a word", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows no shield for a verified event", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = false", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > deselects all sessions when all sessions are selected", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons by descending expiry time", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 5", - "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > should show poster for encrypted media before downloading it", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is edited", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > does nothing when room tag is not allowed", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > paginates", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return undefined for a room without predecessor", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns true when snooze timestamp in storage is less than a week ago", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render nothing when there are no pinned events", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > should syntax highlight code blocks", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming to-device messages to the widget", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept repeated TLDs (e.g .org.uk)", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Public and Knock rooms in Conferences section", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 6 days ago, but less than 144h", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when initial sync is not complete", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (dm)", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads all events", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:com (mostly for (TLD|DOMAIN)+ mixing)", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks with http protocol", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates url preview visibility on encryption state change", + "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > does not try to re-decode audio", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > shouldn't do anything for a local room", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > resumes applying formatting to the rest of a message after a link", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for mobile browsers", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when identity server config has fail error and recognised error string", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room export dialog on button click", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders disabled silenced button when call is forced to silent", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a keyword responsible for triggering a notification", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse creation events", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon when clicked", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > updates notification level when changed", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth disabled", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room with no parent spaces or members when changing join rule to restricted", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > displays advanced section toggle when join rule is public", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for emote event", + "test/unit-tests/utils/numbers-test.ts::numbers > sum > should sum", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to cancel a search", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > shows a spinner when data is null", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns true", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with negative capacity it should raise an error", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should reload when changing language", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > handles when a room is not indexed", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a MessageEventFactory for an audio message event", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at start of string", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999 as 999", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > normally doesn't open the chat panel", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > can call in large rooms if able to edit widgets", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should show a spinner while the setup is in progress", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should update the options from the opened dialog", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should distribute differently depending on the feature name", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > enters qr code login section when show QR code button clicked", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by presence state", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > search for users in the identity server", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption info panel without pending verification", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows sending double-slash escaped slash commands correctly", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > should be navigable using arrow keys", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > adds users beacons to state and monitors liveness", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3623 to 1h 0m 23s left", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render widgets", "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from stable prefix", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by function", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key with an empty m.topic key", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > clears unread marker when room notification state changes to read", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with federation", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should pin the event if not pinned", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.answer", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return n-parent variant", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (https)", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > if calling .invite throws something strange, show default error message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when reminder is snoozed", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > filters out non-room specific rules", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > renders poll history option", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > isVisible > calls isRoomInSpace correctly", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should show call buttons in a room with 2 members", + "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should use configured background url", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggles session selection", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for a disabled feature", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render when homeserver does not support cross-signing", + "test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx:: > renders correctly when user has no ignored users", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link with text", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a live beacon that does not have a latestLocation", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should send a message when the content is modified", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip the /me prefix from a message", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow 3pid changes when capabilities does not have 3pid_changes", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout and emit an update if there are no longer apps in the room", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext even if escaped", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if the homeserver provides no TURN servers", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location unstable prefixed type", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should cache sounds between playbacks", + "test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx::ConfirmUserActionDialog > renders", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > can change starting calls power level", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle a too-short body", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > renders beacon owner avatar", + "test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts::MatrixSchemePermalinkConstructor > parsePermalink > should strip ?action=chat from user links", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room IDs with some candidate servers", + "test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx:: > renders as expected", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > only tracks a single failure per event, despite multiple failed decryptions for multiple events", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with geolocation error when geolocation.getCurrentPosition fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should shrink arrays", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should only return valid content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when fetch fails", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during reciprocation", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects when we leave the room", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > shows a dot if the level is activity", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added and removed an alt aliases", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle matrix.org permalinks", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > onNewInvitedRoom > should call onNewInvitedRoom on VoipUserMapper.sharedInstance", "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when SSK not cached", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should enable spell check", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record high-quality audio if voice processing is disabled", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left and some orders are undefined", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > switches to spotlight layout when the widget becomes a PiP", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is encrypted and the url preview is enabled", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if a room other than the current room is open", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if no functional members state event exists", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999 as 10M", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > does not allow forwarding a poll", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls fetch when data types has text/html and data can parsed", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on active poll list item click", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from RECONNECTING to SYNCING", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not disallowed by ACLs", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is not supported > renders link to download a desktop client", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows an out-of-sync toast when one of the secrets is missing", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should no-op if the badge count isn't changing", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > updates on new responses", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for an event without a renderer", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to min", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders loading state correctly", - "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for mismatched extension", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > should return the same list if the lookup doesn't return any results", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback with a reason", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays when session is connected to key backup", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should update OIDCState for a widget", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload on window location object", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has badge style for notification", - "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on number enums", - "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > renders", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to get pickle key", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not accountData", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a beacon that has a shareable location event", - "test/app-tests/wrapper-test.tsx::Wrapper > wrap a matrix chat with header and footer", - "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should support events with", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > does not add a geolocate control when allowGeolocate is falsy", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was tracked but not reported in a previous session", "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no crypto-setup extensions are provided by a registered module", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > remembers the event being replied to when swapping rooms", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while loading", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return true when force_disable property is true", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with body should return \u00bbuser: body\u00ab", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar for an empty playback > should render correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.conferences=", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > updates when the list of knocking users changes", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when user does not have permission to add children", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on desktop", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > enables event indexing on enable button click", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the menu", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows set up recovery toast when user has a key backup available", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Odd", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should take user to view room for unjoined knockable rooms", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > does not allow signing out of all other devices from current session context menu", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept :NUM (port specifier)", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > does not try to center when no center uri provided", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a 'Start' button", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns default theme when value is not a valid theme", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > renders thread button on own actionable event", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room low priority", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders react children", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with RovingTabIndexWrapper", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > uses my local vote", - "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should maintain the pointer to the given array", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as alert if invalid", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should enter reset flow when showResetIdentity is set", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > renders only the video call element", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > does not display live location share option when composer has a relation", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders homeserver_lacks_support", - "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should remove all pinned events when clicked on Continue", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content contains a command but is not the first text node", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows deleting keywords", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders own and live location options", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate removed properties", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :monkey", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should listen to the right panel", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show set room layout button", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show modal if error is encountered", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should not respect HTML tags in plaintext message highlighting", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for regular unreads", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > doesn't lookup showHiddenEventsInTimeline while rendering", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > signs out of all other devices from current session context menu", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Nulls in location are not shown in URI", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track events if anonymous", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is the exact same moment", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix-help.org", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > upload should raise an error", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toRightOf > should return the correct positioning", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains some items where one of them is a replacement > should contain the last recently set items", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show spinner above results when backpaginating", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should overwriteAccountAuth", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders not logged in message", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (other widget)", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return true for pinnable event types", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isError should return false", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, finished poll", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > off should forward the call to VoiceRecording", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a LocalRoom > should not show the stickers button", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change update", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the read-marker that fall in summarised events after the summary", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles complex transformations", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return false if client cannot send state event", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render block katex", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should handle serverConfig updates correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > spoiler", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should not display a placeholder", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'minimise' should send the widget to the right", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test room mention", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return true for Room", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should not raise an error when recovery is valid", + "test/unit-tests/editor/position-test.ts::editor/position > move first position forwards in empty model", + "test/unit-tests/components/views/right_panel/BaseCard-test.tsx:: > should close when clicking X button", + "test/unit-tests/createRoom-test.ts::createRoom > correctly sets up MSC3401 power levels", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should try to start dehydration if dehydration is enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct label", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for PL", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and .events_default are undefined, returns false", "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we hide the banner", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > removes toast when remove function is called", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a closing square bracket work", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the QR code if disabled", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames other session", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time left > should not call stop", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns null when the first character is not / # @", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should distribute differently depending on the feature name", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should not persist device language when not available", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all unverified devices button works", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, unfinished poll", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should display or not placeholder when editor content change", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render welcome screen if mobile registration is not enabled in settings", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is shown if there is an ongoing call", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single empty item are not considered markdown", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Renders a SendMessageComposer and MessageComposerButtons by default", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show both SSO button and username+password if both are available", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a TextInputField", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu with all the options", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > removes the roomId on ViewHomePage", - "test/unit-tests/components/views/Validation-test.ts::Validation > should handle 0 rules", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should make correct request to complete authorization", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not track a failure for an event that was tracked previously", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Integer lat and lon", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps square brackets", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a matrix event", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f emoji", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if a room exists > should return the room and dispatch a view room event", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > renders beacon info", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should change the setting when toggled", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an unknown message in the same room with the label \u00bbMessage\u00ab", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders etag_missing", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest invalid MXIDs", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a limit", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should allow reset of cross-signing", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when caret is not at beginning of the text", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val < 0", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config 404s", - "test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts::Algorithm > sticks rooms with calls to the top when they're connected", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should should open integration manager on click", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with language specifier", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > kills live beacons when geolocation is unavailable", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with a custom class name", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and a connection error occurs > should show an info about that", - "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should ordering by the provided key order", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return true for Room", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking left > should skip to minus 5 seconds", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > eats clicks to maplibre attribution button", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added and removed in the same set", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > startOidcLogin() > navigates to authorization endpoint with correct parameters", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not store clientId or issuer", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > opens encryption setup dialog when verifiying current session", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for a mention that contains punctuation", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when expanded", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token when encrypting the token fails", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not current user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should clear stores", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > uses banners display name when available", - "test/app-tests/server-config-test.ts::Loading server config > should not throw when both default_server_name and default_server_config is specified and default_server_name isn't resolvable", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > should override browser shortcuts", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > generates big emoji for emoji made of multiple characters", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > should return the resolved members", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for the home space", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > should redirect to verification if set to phase MemberInfo for a user with a pending verification", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.conferences=", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should render the component", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse loud keyword notifications", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when some devices are selected", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > for an empty DM room list > should return undefined", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for home -> all transition", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji replacement", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbRe-enter email address\u00ab > go back to the email input", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > pasting text does not trigger auto-complete", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room is undefined", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the deny button if the power level is insufficient", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should not find LocalRooms", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the end when all is undefined", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > auto-approves capabilities of virtual Element Call widgets", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a QR code if the other side can scan and QR bytes are calculated", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once, even with new contexts", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns an empty object when room map has not been populated", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event to the widget", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an explicitly stopped beacon", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 2 pinned event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if latitude is not a number", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event that is not in timeline but relates to unknown parent to the widget", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders live time remaining when displayLiveTimeRemaining is truthy", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the timeline window", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add pasted values", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as tooltip if custom tooltip set", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _tDom", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to canonical parent space for room", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 6 hours, 48 minutes, 59 seconds formats to 6h 48m 59s", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog > should close the dialog and show the password input", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should not automatically close when a modal is opened under the existing one", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after a spoiled ballot", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing email addresses", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if userIds is empty", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > does not send chat effects in threads", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when meta+Enter is pressed", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > emits an Update event on marked unread room account data", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending edit", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp low numbers", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with dynamic predecessor", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > toggles all rooms in home setting", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when events sender cannot be found in room state", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders collapsed events if events.length = props.threshold", "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders banned message", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, both sides of meridian", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should join subspace when joining nested room", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should roll back power level change on error", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by power level", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Odd", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > shows a dot if the level is activity", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the local notification settings state", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns initial screen from session storage", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns a fake ts for rooms without a timeline", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room with read thread messages", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > destroys and removes beacons when current user leaves room", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isError should return false", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for unknown error", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > opens delegated auth provider to sign out a single device", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event to the widget", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should render the count of results", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a maximum of 3 candidate servers", "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests a red ! if the user has been invited to a room", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for if no identity server is configured", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow signing out of all other devices from other sessions context menu", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](|)", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify room aliases", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should logout of posthog", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > renders notifications matching the snapshot", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should submit using validated config from a valid .well-known", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle divs", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-reactions", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when userTimezonePublish is enabled", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for unsent event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a deviceId", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should allow rearranging via drag and drop", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > asks for confirmation before deleting a backup", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > removing whole string", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders null when no devices", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > emitCurrent > should emit the related event", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if all users have a device", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoTime > should match given locale en-GB", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a sync error", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions event is falsy", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in one of the feature groups are supported", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys if available", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and a room is viewed > and the quick settings are open > should render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command category is not .messages or .effects", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > leaves space when leave option is clicked", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > handles saving beacon event id when local storage has bad value", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status not_sent", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends plaintext messages correctly", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 59 seconds formats to 59s", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > ignores events for irrelevant beacons", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should not show the attachment button", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with space name", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for ConnectionError", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > invites anyway", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option when user does not have rights to pin", - "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should prefer snake_case keys", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hostnames with ports", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at end", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room IDs with some candidate servers", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove a phone number", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should ask to set up a recovery key when there is no recovery key", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfile should return undefined if the profile was not fetched", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > OIDC Aware > should resolve account management endpoint", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in a thread > should render as expected", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > updates if ID server is changed", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a room inside of a space that was being viewed", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > removes marker on unmount", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the room is not a DM", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for local room ID", - "test/unit-tests/components/views/location/MapError-test.tsx:: > applies class when isMinimised is truthy", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > and setting MessageComposerInput.showPollsButton to true > shouldtrue display the button", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > wraps single anchor", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > hides export format input when format is valid in ForceRoomExportParameters", - "test/unit-tests/editor/history-test.ts::editor/history > push, then undo", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added and removed in the same set", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders user info", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > should send room oob data to start login", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors feature is not enabled > passes the flag through to getVisibleRooms", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does not show copy link button when not supplied a link", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Curl Client/1.0", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render selected items passed in via props", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit and includeCount", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates rooms state when a child room is added", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > unpins event on pin option click when event is pinned", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rerendering PiP content 1 > should not change the PiP content", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > does not render if user can neither approve nor deny", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale de-DE", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are missing", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room clipboardData files and types are empty", + "test/app-tests/server-config-test.ts::Loading server config > should not throw when both default_server_name and default_server_config is specified and default_server_name isn't resolvable", + "test/unit-tests/favicon-test.ts::Favicon > should clear a badge if called with a zero value", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > renders export format with html selected by default", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > and setting MessageComposerInput.showPollsButton to false > shouldnot display the button", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner whilst QR generating", "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for monthly_active_user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when localStorage is not available", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"The sender has blocked you from receiving this message\"", - "test/unit-tests/useTopic-test.tsx::useTopic > should display the room topic", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should show 'no results' if appropriate", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without ID > should raise an error", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is undefined", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds calls", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Removes old room if it finds a predecessor in the m.predecessor event", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays confirmation dialog if rooms are encrypted", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for an immediate ready room > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return an empty list for an empty input", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is false", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for unsupported desktop browsers", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > no switch required, room is in current space", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an verified E2EIcon when the e2E status = Verified", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the main timeline", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders dropdown options in menu", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails with permission error", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a non beacon event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by recent when they have the same notif state", "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalinks with a via argument", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached, even if other RoomState.newMember events fire", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device from kebab menu", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds no calls", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key undefined", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > just a code block", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when room already has a recording", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows the dehydrated devices if there are multiple", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the import e2e keys dialog on click", - "test/unit-tests/components/views/voip/VideoFeed-test.tsx::VideoFeed > Displays the room avatar when no video is available", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > can insert a mention into a text node", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs including formatting", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > updates notification level when changed", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should show a spinner while the setup is in progress", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should not find a room for an unknown Id", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > should force calls to silent when local notifications are silenced", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for poll start event", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested ordered lists", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when all devices at app start are verified", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverifiable device", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing pub key if set", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders join and reject action buttons with correct labels", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > allows a community completion to pass through", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog > should close the dialog and show the password input", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Register works as expected", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns devices older than 90 days as inactive", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can call if you have no friends but can invite friends", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if secret storage is set up", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming state updates to the widget", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the end when all is undefined", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when layout changes", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls kick on deny", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Allowed for a widget", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > updates if ID server is changed", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display only the current user", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is disabled", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect labs from settings store", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should not find LocalRooms", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick no candidate servers when the room has no members", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for an event without a renderer", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus and clear when receiving an Action.ClearAndFocusSendMessageComposer", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should skip to auto join", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > in empty line", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > adds unread marker when room notification state changes to unread", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a local room", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds calls", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight when message's push actions does not have a highlight tweak", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device name", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > updates size limit on change", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light-high-contrast theme if that is selected", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when a deny request fails", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false for the same pointer", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empty object as valid content", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders switches correctly", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > opens the panel in the given room with the correct phase", + "test/unit-tests/utils/export-test.tsx::export > should export images if attachments are enabled", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should render as expected", + "test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx::PinnedMessageBadge > should render", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on B ordering difference", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a sub-space existing in multiple places in the space tree", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to a custom level", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest users from other server when room has m.federate=false", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/export-test.tsx::export > maxSize is less than 1mb", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false to space", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > has() should return false for an item not in the cache", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > shows the 'set up recovery' toast if user has not set up 4S", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for unsent messages", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should not persist device language when not available", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should call /logout", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room when changing join rule to knock", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.recent=", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time is up > should not call stop", "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with empty content body property", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return true if pinned events contains the event id", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders the message button", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > does not update on other account data", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > rechecks theme when setting theme fails", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > ordered lists", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid image files", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles text in tags", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is defined but '.m.room.message' isn't, uses .events_default", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - ", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the pusher state", - "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens with a pickle key", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should display 3pid email addresses and phone numbers", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for event permalinks without a custom label", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time is up > should not call stop", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > If the predecessor room is not found > Shows an error if there are no via servers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting an at-room completion inserts @room", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for unsupported browser if user accepted already", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should remove mentions that are removed by the edit", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing enter selects the mention and inserts it into the composer as a link", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > removes toast and emits", + "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should support events with", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when the quick settings are open > should not render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the recovery method removed dialog", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return true if all conditions are met", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should re-check the encryption state and displays the correct panel when the user clicks cancel the reset identity flow", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div and br tags when enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders timeout as selected option", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event does not contain geouri", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should render", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > clicking checkbox toggles selection", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon fails consistently", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to joined", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders nothing if poll has no answers", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders kicked message", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should change the system theme when clicked", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for spaces", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver config has fail error and recognised error string", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.direct=", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should handle an empty hash", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > works in conjunction with useSystemFont", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a location event in open street map", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should link to predecessor room", + "test/unit-tests/theme-test.ts::theme > enumerateThemes > should return a list of themes", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights nothing if poll has no votes", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > is created once in SdkContextClass", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from RECONNECTING to SYNCING", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > renders devices in correct order", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > should render dialog", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can neither approve nor deny", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > removes itself when user stops having live beacons", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > navigates to the space home on click if already active", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > sets position on geolocate event", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should update integrations provisioning on toggle", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing mention of said user", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label File with size", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > clicking on a mention in the composer dispatches the correct action", "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a heading", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching push rules fails", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > onNewInvitedRoom > should call onNewInvitedRoom on VoipUserMapper.sharedInstance", - "test/unit-tests/editor/history-test.ts::editor/history > not every keystroke stores a history step", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a number enum", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render phone numbers", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > handles error when updating setting fails", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > renders banned users", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders map correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when sentContentListToRoom errors", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles the client being stopped", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot deny", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor when reinitialised", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > shows Join button if the user has not joined", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with an event on the main timeline and a later one in a thread > an unthreaded receipt for the later threaded event makes the room read", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changes for difference in pointers", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > getDefaultDeviceDisplayName > https://develop.element.io/#/room/!foo:bar & Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = develop.element.io: Chrome on macOS", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > excluding rooms", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should export if everything is fine", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > hides the out-of-sync toast when one of the secrets is missing", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders denied request message", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle resolutions after unmounting sanely", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders invite message with invited email", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore.isUserAuthenticatedWithOidc is falsy", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should display a caption when no threads are unread", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a beacon that is not live", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when calling with video = false and an audio device is available > should return the audio stream", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with unavailable error when geolocation is not available", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > ignores liveliness error when checking syntax only", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for one beacon", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should render pin button", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > prepends events into summaries during backward pagination without changing key", + "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise if pooling maximum value is reached", + "test/unit-tests/Rooms-test.ts::setDMRoom > when trying to add a DM, that already exists > should not update the account data", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog with submit debug logs option when non-networking error occurs", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should unpin the event if already pinned", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should spot a signed device", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > removes toast when remove function is called", + "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a check icon when in success", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to subspace", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for redacted event", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a function > returns result from incompatibleValue function", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns null when setting is not incompatible", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should default to private room", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when removed an alt alias", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to approve a request", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not renders user timezone if timezone is invalid", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves capabilities via module api", "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can remove email pushers", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Opens room inviter on button click", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FT:h", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > doesn't cancel my local vote if someone else votes", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should not prompt the user if the requested key is not the default", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity needs approval", - "test/unit-tests/Notifier-test.ts::Notifier > getSoundForRoom > should not explode if given invalid url", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 5 (Encrypted by an unverified session)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with a string calls the onChange argument", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a multiple power level changes", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if there is no end event", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > should allow filtering", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no homeserver support", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should create a local room and dispatch a view room event", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> home transition", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when destroy is called", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should not display the section when the user can not set the value", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > when there are cached values and membership updates > and membership events with the same values appear > should not invalidate the cache", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not disable share button if terms accepted", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return true for Room", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not show jump to date error if we already switched to another room", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders correctly when selected", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Verified", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > should show the email input and mention the homeserver", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should add a custom theme", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name from a standard room ID", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > navigates to location picker when live share is enabled in settings store", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped markdown", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should override hsUrl in creds when login response wellKnown differs from config", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should return usage if no args", "test/unit-tests/Rooms-test.ts::setDMRoom > when logged in as a guest and marking a room as DM > should not update the account data", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows view in room button when the event is a thread root", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns activity if a thread in the room unread messages", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render when homeserver does not support cross-signing", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display all the buttons when the space menu is opened", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + modifier key combo", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should has placeholder", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > returns an empty map for completion types other than room, user or at-room", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > a notification and a highlight summarise to a highlight", - "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders with children", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_already_exists", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays unencrypted rooms with toggle disabled", - "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should insert at the correct end", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for one beacon", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for spaces", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > creates a geolocate control and adds it to the map when allowGeolocate is truthy", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track any events if disabled", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given more React children", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls invite on approve", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > 'Verify own device' flow > should show 'Waiting for you to verify' after confirming", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a User should start a DM", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = Element Desktop: macOS", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders default tabs correctly", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (explicit)", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits to unknown events", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote if the poll is undisclosed", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return J-D in narrow mode", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for supported browsers", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > handles homeserver too old error", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends unthreaded receipt requests", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders joining message", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > renders button with an unread marker when room is unread", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with more than 2 members", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > informs widget of theme changes", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (invite)", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should render nothing if no url given", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > opens the panel in the given room with the correct phase", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was answered elsewhere", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > should render as expected for a DM room with a single third-party invite", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the instance was forgotten", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave() and shows an error dialog", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event that is not room message", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes avatar", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return issuer from localStorage", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails without data.flows", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > invite to a subspace is only shown at the top level", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights multiple winning votes", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention with a completionId uses client.getRoom", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw if scalar_token is missing in response", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > a threaded receipt for the event makes the room read", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > should change to true when setting true", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show spinner whilst loading", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > does not render create space button when UIComponent.CreateSpaces component should not be shown", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should combine search results when the query is present in multiple sucessive messages", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist a refreshToken when present", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > keeps the original timestamp after repeated decryption failures", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should call scrollIntoView if specified", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > translated correctly when plural string exists for count", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client when creating token refresher fails", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should create html message", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should not collapse beacons as part of creation events", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should omit attachments", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > hides unpinnable events not found in local timeline", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map setup throws", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on own actionable event", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does nothing for empty element", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to other rooms for orphaned room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we were waiting for the lock ourselves", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Unverified", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Conferences and Room but no People section", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_already_signed_in", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of a known screen", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > Should successfully complete a password flow", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > renders poll history tab", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates back to poll list from detail view on header click", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.video for video files", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > displays an error when session display name fails to save", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Renders as expected", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > keeps same tab active when order of tabs changes", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'pickleKey'", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Links to the old version of the room", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > has the search field", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > instance > should return an instance", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty content should return null", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element call room", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button click", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for normal poll start", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not make /messages requests when exporting 'Current Timeline'", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention without a completionId uses client.getRooms", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from SYNCING to SYNCING", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > contentLength should return the buffer length", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when the content has changed", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return true if user can pin or unpin", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the overlay timeline", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room without predecessor", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing linebreak", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is not a valid URL", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons with timestamps before beacons without", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders radios correctly", - "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_config", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should call onChange when custom input is blurred with a number in it", - "test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx:: > renders", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > renders correctly", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > links", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should suggest e-mail even if lookup fails", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > no-ops for idential changes", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getApps > should return apps from the widget store", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > if rooms should not be encrypted > should create an unencrypted room", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 4 pinned event", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders loading state correctly", + "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_name when resolveable", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if label is unset", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows an error if there are no via servers", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes non-consecutive with varying length backticks in between text", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should send message on save button click", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > userProfilesStore should raise an error without a client", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has changed category", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should handle up/down arrow keys work when handleUpDown=true", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Should not display a warning if the user was verified and is still verified", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when there is no snooze in storage", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is over a week ago", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > canSetValue should return true", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays pre-prepared playback with correct playback phase", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a non-DM room with one third-party invite", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on toggle click", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should not allow to unpinall", "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test broken mentions", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code in backticks", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > (filtering warnings about no predecessor) > Shows an empty div if there is no predecessor", - "test/unit-tests/settings/controllers/AnalyticsController-test.ts::AnalyticsController > Tracks a Posthog interaction on change", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns beacon ids for room when user has live beacons for roomId", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > should clear the error on reconnect", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag to if existing event is false", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should encrypt the file if the room is encrypted", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.suggested=", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks outside of code blocks", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding actions", + "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should display room member list when payload has a falsy event", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string with duplicate character", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows disabled when call member power level is 0", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until end of timeline is reached while within time limit", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should fallback to normal login when client registration fails", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is unverified", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > cancels ignoring the user", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for null", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > renders share type switch with own and pin drop options", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added multiple alt aliases", + "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns legacy uri when m.location content not found", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist credentials", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls kick on deny", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after two minutes > should not remove the last widget", + "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly parses model", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning resolves", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights multiple winning votes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to create pickle key", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > declining the unknown user dialog > should only invite existing users", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct < 0", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for state event", + "test/unit-tests/editor/history-test.ts::editor/history > keystroke that didn't add a step can undo", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > enables encryption after confirmation", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should enable spell check", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > pinning > renders pins options", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and no room is viewed > should not render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with delete", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should open or close the message pinning list", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > opens event index management dialog", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > works if a room is specified", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sending", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > ignores other account data events", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy and altitude", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if the event is redacted", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static WEBP", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > versions > calls install update", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render section when RoomHistorySettings feature is disabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for DE", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 0 seconds formats to 0s", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > removes the roomId on ViewHomePage", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:com (mostly for (TLD|DOMAIN)+ mixing)", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account is managed externally", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects when we leave the room", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Inactive", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show error view if failed to look up room alias", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows the correct member count", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.conferences=", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > saves an empty session display name successfully", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should create new matrix client with credentials", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle both displayname and avatar changing in one event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if clipboard data is null", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should translate _t strings", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > creates a pickle key with userId and deviceId", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return undefined for a room without predecessor", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (explicit)", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should create oidc client correctly", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open topic dialog when not clicking a link", + "test/unit-tests/components/structures/LargeLoader-test.tsx::LargeLoader > should render the text", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when data types has text/html but data can not be parsed", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > toggles out of editing mode when device name is saved successfully", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to custom value when custom input is blurred blank", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > room pill turns message into html", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an ImageBody", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with no candidate servers", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > converts legacy location events to pin drop shares", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when all orders are undefined", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > should request a new token if the old one fails", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no events when I click in an ended poll", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders loading state", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with no votes", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle undecryptable pre-join messages", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return false for a redacted event", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing email addresses", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for local room ID", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should have a waveform, a seek bar, and clock", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha when they have the same notif state", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room by the 'all rooms' fallback", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline styling", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > fails to update delayed events", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders additionalButtons", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms based on thread replies too", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should pass appropriate permalink creator for all rooms search", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device with metadata", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > should show some emojis once keys are exchanged", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should render", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while signing in", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should select other homeserver field on open", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for an enabled feature", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with no responses", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is a float in range", + "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should add the widget successfully", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes around other markdown", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders custom user identifiers in the header", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return an empty list for an empty input", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val < 0", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists state correctly without replyToEvent onbeforeunload", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles and sets settings correctly", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > does not parse room alias with too many separators", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends only one vote event when I click several times", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > renders container", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when current user membership is not joined", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop when it is false", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not jump to date if we already switched to another room", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > unsubscribes from geolocate errors on destroy", + "test/unit-tests/createRoom-test.ts::createRoom > sets up Element video rooms correctly", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > fetches the related poll start event and displays a poll tile", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should gracefully handle invalid MXIDs", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > should show CreateSecretStorageDialog if forceReset=true", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > updates value on option selection", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders disabled invite button when current user is a member but does not have rights to invite", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > inserts toast according to priority", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should close editing", "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is defined", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Compact correctly", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes non-consecutive with varying length backticks in between text", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the result was forgotten", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > retains poll disclosure type when editing", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setup > uses the baseUrl", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to true when setting true", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns false", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for combined verified and inactive filters", - "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders plain text children", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders join and reject action buttons with correct labels", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with voip tab selected", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Register works as expected", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are backed up", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is non-null and room.getEventReadUpTo is null, shows disabled read receipt button", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should return `cached_title` from API /widgets/title_lookup", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description at first", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when the read receipt is earlier than the latest event", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > updates latest location", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > by default adds Twemoji font", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show branded SSO buttons", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > submits location", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > test user flow", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string exists but not for for count", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > ignores events for irrelevant beacons", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > appends events into summaries during forward pagination without changing key", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when config is invalid JSON", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > renders live duration dropdown with default option", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji varitation replacement", - "test/unit-tests/editor/position-test.ts::editor/position > move backwards within one part", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user passive after 10s of no activity", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of room creation events quickly", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element deletions", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows emoting with non-text parts", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the new poll option field after clicking add option button", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when UIComponent.InviteUsers customisation hides invite", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayISO > should return ISO format", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > does not try to fit map bounds when no bounds provided", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > removes client information on start if it exists", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should show error if user tries to use non-image file", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with react node and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > handles error when updating history visibility", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown remains plaintext", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no pinned event", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_cancelled", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should allow to change the recovery key when everything is good", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with only non-local votes", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler correctly when setting filter to All", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the room summary", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > should not display the button", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect custom fields", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=true on non-last event if last event is not eligible for special receipt", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completion if present and correct format", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns true when setting value is true", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room an be previewed", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > removes account data events for devices after sign out", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Even", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify the user to posthog if pseudonymous", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with non-string body", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon", - "test/unit-tests/components/views/settings/encryption/EncryptionCard-test.tsx:: > should render", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > toggles playback on play pause button click", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/gif", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to disconnect if the widget returns an error", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested quotations", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > disables calling if there's a jitsi call", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving right", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should prompt ask to join", "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a location event in open street map", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows scores if the poll is undisclosed but ended", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent Jitsi widget with back and leave buttons when not viewing the room", - "test/unit-tests/editor/position-test.ts::editor/position > move first position forwards in empty model", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple tag substitution", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > updates state and emits beacon liveness changes from true to false", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account is managed externally", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should allow user to revert from a custom server to the default", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at -16px if given no previous position", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when calling with non-group call event", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > does not set position on geolocate event", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ViewRoomError if the alias lookup fails", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false without room", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Negative longitude and explicit CRS", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > updates room state when connecting and disconnecting", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server .well-known forces disabled encryption", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > don't show external conference button if the call is not shown", - "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > defaults to false when no setting exists", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no room", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should tag a room low priority", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > works when not a member", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > caret resets correctly to current line when untoggling formatting while caret at line end", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is disabled > should not have the option to create a knock room", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an explicitly stopped beacon", - "test/unit-tests/utils/export-test.tsx::export > checks if the render to string doesn't throw any error for different types of events", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Notification rendering context", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets message count on change", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > displays fallback text when the poll end event does not have text", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should attach an empty mentions object for a message with no mentions", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks without protocol", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when default encryption setting is false", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a beacon that does not have a shareable location event", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing closing square bracket", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered doesn't incorrectly override setting", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for verified filter", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should retry if initial attempt failed", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > takes someone's most recent vote if they voted several times", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > does not render sign out other devices option when only one device", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example.com\u00ab should return true", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders invite message", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre menu when the button is clicked", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders with correct classes when button has kind", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > should replace parameters in widget url template", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > and there is a thread timeline > should send receipts but no fully_read when reading the thread timeline", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple tag substitution and translates with fallback locale, attributes fallback locale", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready and call showUpdate when current version differs from most recent version", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should remove the link", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset type", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto", - "test/unit-tests/utils/export-test.tsx::export > maxSize is less than 1mb", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > only tracks a single failure per event, despite multiple failed decryptions for multiple events", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and the server liveness check fails > should show the server error", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally true", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space does not contain all favourites", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with no receipts", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > disables button correctly", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 1 (unverified user)", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if UIFeature.Feedback is disabled", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders room not found error", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not show jump to date error if we already switched to another room", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should not raise an error when recovery is valid", - "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from unstable prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept repeated TLDs (e.g .org.uk)", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest thread event was sent by the current user", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > onLoggedOut should clear the UserProfilesStore", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > tracks message sending progress across multiple rooms", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client with a tokenRefreshFunction", - "test/unit-tests/utils/threepids-test.ts::threepids > lookupThreePids > should return an empty list for an empty list", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should allow unpinning all messages", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting an unkonwn item should not raise an error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in the only feature group are supported", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > does not render other sessions section when user has only one device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving an Action.FocusSendMessageComposer action", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user active shortly after activity", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should emit onChange calls", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when the text is a plain text emoiticon", + "test/unit-tests/settings/controllers/FontSizeController-test.ts::FontSizeController > dispatches a font size action on change", + "test/unit-tests/Rooms-test.ts::setDMRoom > when the current content is undefined > should update the account data accordingly", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should find Rooms", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders avatar with specified alt text", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a private space > does not render addresses section", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 50", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return false for LocalRoom", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if poll is fetching responses", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render permission request", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no sender", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > opens interactive auth dialog when delete fails with 401", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call is connecting", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no room", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show SSO button if that flow is available", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders joining message", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return undefined when no claims in localStorage", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout IRC correctly", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses the create event if there is no m.predecessor", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.direct=", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > disables submit button until geolocation completes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should prevent out of order results", + "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on number enums", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room with dynamic predecessor", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile if there are via servers", + "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders only child if presence is disabled", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > opens map dialog on click", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Bubble correctly", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=online", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > updates when roomId prop changes", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should render", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > shows the session ID and key", "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns red if a thread in the room has a highlight notification", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > lets you click it", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should be empty by default", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by presence state", - "test/unit-tests/utils/export-test.tsx::export > checks if the export format is valid", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return undefined when no claims in localStorage", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is undefined", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader properly opens a context menu when clicked on the button", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return true for Room", + "test/unit-tests/components/views/auth/AuthFooter-test.tsx:: > should match snapshot", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without msgtype", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:bar.com", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > generates big emoji for emoji made of multiple characters", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword with same actions as existing rules when keywords rule is off", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming to-device messages to the widget", + "test/unit-tests/editor/range-test.ts::editor/range > range trim just whitespace", + "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders link correctly", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > cannot add more than three widgets to top container", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias changed", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the menu", + "test/unit-tests/utils/objects-test.ts::objects > objectWithOnly > should exclusively use the given properties", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends markdown messages correctly", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > should not blindly group 3pid invites and treat them as distinct users instead", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return token from localStorage", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should dump debug logs on Action.DumpDebugLogs", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test user mentions", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > stop should return a copy of the data buffer", + "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should render a single upload correctly", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (other widget)", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/apng", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length < B length", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 0 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds no votes if there are none", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > don't sort the order of users sent by the server", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to restricted", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > clears error message for notification rule on retry", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when not expanded", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite comes in", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns falsy when no users have changed power level", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > does not emit filter changed event on store update when nothing changed", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders the room header", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should make things rainbowy", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a high-contrast theme if system prefers it", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a loading message while poll history is fetched", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at end of string", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users can see encrypted messages", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of first line which is empty", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 1", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should move a widget within a container", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for a redacted event", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config succeeds but is empty", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place and key in same place in insertion order", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button on non-actionable event", + "test/unit-tests/components/structures/RightPanel-test.tsx::RightPanel > renders info from only one room during room changes", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect user agent", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity needs approval", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should return usage if no args", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated GIF", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isNew should return false", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device icon when no device type given", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > updates on new responses", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message and duration if the call was ended", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for text content with an email address", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is not in the current space", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :cop", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > applies interactive class when tile has click handler", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns an empty object when no event exists for the device", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > ignores terminated calls", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing closing square bracket", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account false", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > starts update check", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should show the attachment button", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a phone number is dialled", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unsupported_protocol", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for room member event", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on space keyup", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given 2 React children", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > does not dispatch when notifications are silenced", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render welcome screen if mobile registration is not enabled in settings", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=true", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage if given an invalid power level value", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1066-10-14", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user has been invited to a channel", "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for a DM", - "test/unit-tests/components/structures/MessagePanel-test.tsx::shouldFormContinuation > does not form continuations from thread roots which have summaries", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = false, DM = true", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to disconnect if the widget returns an error", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > status messages", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 2", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog by clicking the background > should close the dialog and show the password input", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are removed", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can neither approve nor deny", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for redacted event", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should a pop-up for thread event", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > marks the room as read even if the receipt failed", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > catches an error from localstorage and returns false", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with sidebar tab selected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns an empty map when no member can be found", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the current user's identity is approved", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not disallowed by ACLs", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalink via arguments", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > custom user agent = Element Desktop: Unknown", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > clears unread marker when room notification state changes to read", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join enabled > does render the RoomKnocksBar", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room on submit", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should send state=disable to API /widgets/set_assets_state", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling, but * becomes _ and __ becomes **", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should display the modern layout", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of highlights", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should allow pasting of text values", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > does not race with lazy loading", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does not show context menu when right-clicking", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 12 hr time format", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > trims whitespace, encloses the fonts by double quotes, and sets them as the system font", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should close on cancel", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Even", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders ignored users tab when feature_mjolnir is enabled", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches words only by default", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > does allow submitting when there are options and a question", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is accepted", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > should listen to showUrlPreview change", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 144 hours ago", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage estimate", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCards > overwrites history", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to true, it should short-circuit and return true", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should handle multiple parameters", "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > appends the year for events created in previous years", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should retain backslashes", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on toggle click", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should not run the migration", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > failed to connect", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles absence of backup", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow removing multiple devices at once", - "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should handle download errors", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (without plain text around)", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should dismiss the device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if we have an existing suggestion but no command match", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm success > should set the room into creating state and call waitForRoomReadyAndApplyAfterCreateCallbacks", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send message when there is no roomId", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to 0 seconds when less than a second - 123ms formats to 0s", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > sets position on geolocate event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should proceed if server is not accessible", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > stops beacon when liveness changes from true to false and beacon is expired", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; OpenBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: OpenBSD", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains m.location with valid uri", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the non-overflowing case correctly", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile linking to an event if there are via servers", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with paragraphs", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > works for escaping backticks in between texts", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > findEditableEvent > should not explode when given empty events array", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if poll is fetching responses", - "test/unit-tests/audio/Playback-test.ts::Playback > stop playbacks", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns map of users to rooms with 2 members", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing by default", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room when changing join rule to knock", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users cannot see encrypted messages", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location unstable prefixed type", - "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > does not send any requests if everything has been read", - "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > shows a spinner at first", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sets layout", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at end", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should include app version", - "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > renders options", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > does not truncate a reason unnecessarily", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for an emoji suggestion", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for room links with vias", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Unregister works as expected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is *not* in hierarchy", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Should not display a warning if the user was verified and is still verified", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return true from VoiceRecording", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f emoji", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor event, it should count predecessor highlight", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (same widget)", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set on clients with no crypto", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show member list right panel phase on Action.ViewUser without `payload.member`", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct default message", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > may send notifications", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if the thread hasn't a notification anymore", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays pending warnings when encryption is enabled", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for removed room rules", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns the last ts", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > treats any invalid answer as a spoiled ballot", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > preserves non-persisted widget on container move", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a highlight notification in the TAC", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should return to default view if adding is cancelled", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should disable the checkbox", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing backticks", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.archived=", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting an at-room completion inserts @room", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > calls", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forRoom > constructs a link given a room ID and via servers", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a feature flag changes notification state", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should maintain pointers", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the local notifications settings status when clicked", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > goes to room of latest beacon with stopping error when clicked", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to rule value when no synced rule exist for the user", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > renders input with default value of false", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 2", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > getRoomIds should only return the valid items", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > shows ask to join if feature is enabled", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested formatting", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from PREPARED to SYNCING", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with non-string body", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to approve a request", + "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > renders button", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple tag substitution and translates with fallback locale", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > Signs out of current device", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should display an error when recovery key is invalid", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > confirming the unknown user dialog > should invite all users", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have hover style when hovered and enabled", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment srcHttp is falsy", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with 2 members", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > status > updates component when event status changes", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear in code blocks", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with dots in name", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = true", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > handles invalid bounds", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string when keyChar is falsy", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > should return the resolved members", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for more users if percentage grows", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render + if last", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > does not try to center when no center uri provided", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the socials if disabled", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FF:h", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should send a message when Ctrl+Enter is pressed", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested quotes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should make things rainbowy", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed, added, and removed properties", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user added", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > retry button retries stop sharing", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not update bounds or center on changing beacons", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the read-marker that fall in summarised events after the summary", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage persisted", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader has the correct option selected in the context menu", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > logs error and resets state when updating guest access fails", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button and clicks explore public rooms", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from crypto-setup-extensions provided by a registered module", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing at start of non-editable part prepends", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes ICE fallback preference through widget URL", + "test/unit-tests/Notifier-test.ts::Notifier > _playAudioNotification > does not dispatch when notifications are silenced", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show edit button when we cannot edit", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the JoinRuleDialog on click with private join rules", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was not fetched", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > should return JSONEventFactory for a no-op m.room.power_levels event", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should open settings to the reset flow when 'forgot recovery key' clicked", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > repeatedly updates room state while connected", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest thread event was sent by the current user", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > removes avatar", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if #roomMention is surrounded by text", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes last known position after 30s of inactivity", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with inactive notice when last activity was more than 90 days ago", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last week", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if you're alone", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should start a DM when clicking a person", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should call Navigator::setAppBadge", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when cross signing and secret storage are ready", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should not show the attachment button", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > clear all notifications > clears all notifications", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is undefined", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should make correct request to complete authorization", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist a refreshToken when present", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify MXIDs", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down in list", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders no votes if none were made", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > should redirect to verification if set to phase MemberInfo for a user with a pending verification", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays error when playback decoding fails", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if there is non migrated legacy crypto store", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows block button when member userId does not match client userId", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with local, non-local and invalid votes", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a user permalink", + "test/unit-tests/favicon-test.ts::Favicon > should create a link element if one doesn't yet exist", + "test/unit-tests/vector/init-test.ts::showError > should match snapshot", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave() and shows an error dialog", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped backslashes", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be enabled", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when the timezone is changed", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends markdown messages correctly", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the import e2e keys dialog on click", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders loading beacon UI for a beacon that has not started yet", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device from kebab menu", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is any other error, it should not report ready, displayname = MXID and avatar = null", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when email 3pids exist", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple invites", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should not move if there is no room", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element description", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from CATCHUP to ERROR", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not open the tooltip when hovering a link", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > should change to true when setting true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should disable buttons when isUpdating=true", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (http)", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for non public room", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not leak javascript from room names or topics", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action when update not available", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by function", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > pasting text does not trigger auto-complete", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for favourites -> all transition", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should start the DM directly", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if the panel is open but in another room", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error with fallback message identity server config has fail error", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders null when event does not have an extensible poll start event", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > renders expanded devices with device details", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > does not mistake characters in text presentation mode for emoji", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 2 (device not verified by its owner)", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 1", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > should not display the button", "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new room to an existing DM relation > should update the account data accordingly", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores events for other timelines", + "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > should render", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a room outside of a space that was being viewed", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains height", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > creates local notifications event after a non-cached sync", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOnlyKnownProfile should return undefined if the profile was not fetched", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should throw if the token was persisted with a pickle key but there is no pickle key available now", + "test/unit-tests/components/views/location/MapError-test.tsx:: > applies class when isMinimised is truthy", "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to plaintext messages", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > during crypto init", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when well-known force_disable is true", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with empty content body property", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns beacon ids for room when user has live beacons for roomId", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with keyboard tab selected", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a loading message while poll history is fetched", - "test/unit-tests/utils/objects-test.ts::objects > objectWithOnly > should exclusively use the given properties", - "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should update the value when UIStore's value changes", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.image event type", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should disable buttons when isUpdating=true", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders settings marked as beta as beta cards", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a hint", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up normally when the first shut down cleanly", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Even", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > defaults to moderator for starting calls", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should highlight words correctly", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/png", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string if date is within same day", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches ignoring accents", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when crypto is not enabled", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > escaped html", - "test/unit-tests/favicon-test.ts::Favicon > should clear a badge if called with a zero value", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests only spaces matching a prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @localhost:foo.com", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > send guest access event on toggle", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by recent when they have the same notif state", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > unhides the bar when a new knock request appears", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the deny button if the power level is insufficient", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for old-style version strings", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a thread message with the correct fallback", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a mobile device type", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > should return false", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget without timestamp > should not remove the last widget", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > trims whitespace, encloses the fonts by double quotes, and sets them as the system font", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > and some 3rd-party members have a profile > should resolve the profiles", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a room alias", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > updates size limit on change", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for should raise an error for a non-matrix.to URL", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no left space", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo error permissiondenied correctly", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns a pretty list without hasMore", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up wysiwyg drafts", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple tag substitution", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > orphan rooms are added to Notification States for only the Home Space", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders user info", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request fails", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should call onSelectionChange() when an item is removed from selection", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when enabled and room join rule is not knock", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when calling with non-group call event", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to CAS login", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not call for suggestions with a null suggestion prop", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > closes and displays error when geolocation errors", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > popCard > removes the most recent card", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders without description", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should strip tag from initial content", + "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > returns undefined if neither prefix is present", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 3 > renders a paragraph with three names", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc3245.voice content", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > MemberListView > Memberlist is re-rendered on unreachable presence event", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 48 minutes, 59 seconds formats to 48m 59s", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when roomId is falsy", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when no beacons have locations", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add fields related to edition", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should allow setting an identity server", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the menu", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=busy", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu while devices are loading", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return true + invite event for a DM room with one third-party invite", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the room summary", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should set the visibility to private by default", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > invites anyway", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val > 100", + "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should render", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons for roomId", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > user pill turns message into html", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK/SSK not cached", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = false", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays unencrypted rooms with toggle disabled", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > extends device with client information when available", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > any markdown turns message into html", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/USK not cached", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows no shield for a verified event", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > flushes rageshake before quitting", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the message composer", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape single quote in placeholder", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > renders the theme choice UI", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to max", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for 401", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result is falsy", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Replaces the old room when a newer one joins", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID without protocol", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoTime > should match given locale en-GB", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles rules with no conditions", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return an empty array on no matches", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = true", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > selecting own location share type advances to location picker", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > (filtering warnings about no predecessor) > Shows an empty div if there is no predecessor", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders own beacon status when user is live sharing", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return the error if there was one", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a JSONEventFactory for a room create event without predecessor", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should not create a pickle key when credentials do not include deviceId", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert user pill", + "test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx::FeedbackDialog > should respect feedback config", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no past polls message when there are no past polls in the room", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape backslash in placeholder", + "test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx::AppearanceUserSettingsTab > should render", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > destroys non-persisted right panel widget on room change", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp high numbers", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should recalculate all rooms when the client is ready", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns grey if a thread in the room has a normal notification", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles complex transformations", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph with spurious breaks around it in selected range", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should have a Matrix-branded destination file name", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > allow typing e-mail addresses without splitting at the @", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving a reply_to_event action", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to expand a reason", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should be the default", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > rings when incoming call state is ringing and notifications set to ring", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > without filter", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room is undefined", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is falsy", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > should render notificationState if one is provided", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should fire FocusMessageSearch on Ctrl+F when enabled", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should fall back to WebPlatform::setNotificationCount if no Navigator::setAppBadge", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event to the widget if seen already", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks unescaped", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is cached", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should proceed if server is not accessible", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should set the content type to MsgType.Emote when /me prefix is used", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should strip v prefix from versions before comparing", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Composer Layout > should have a waveform, no seek bar, and clock", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return valid content", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should revoke tokens when user is authenticated with oidc", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to invited space", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message with a generic title", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should warn when trying to create a room with an invalid form", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the spotlight when the search button is clicked", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is not 1", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for invites", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V1 font size to V3", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should dismiss the device", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display Close list button if the message pinning list is displayed", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > calls position handler with position", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists to session history upon sending", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should set fresh login flag in session storage", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats with seconds", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not add A-Element-R label if not rust crypto", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should not automatically close when a modal is opened under the existing one", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly if its already formatted", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > clicking retry should set the room state to new dispatch a local room event", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is knock", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is connected", + "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should fall back to camelCase keys when needed", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a 'Verify by emoji' button", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when using itemLimit", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device without metadata", + "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly generates change calls", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for ES", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return false for LocalRoom", + "test/unit-tests/favicon-test.ts::Favicon > should draw a badge if called with a non-zero value", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should include rooms in space home [Chrome]", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes underscores", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > user mentions", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by alias and join", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name and port when included", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when no clientId is found in storage", + "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > renders", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with one winning answer", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false when the event was sent by the current user", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims extracted from id_token in localStorage", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should return usage if no args", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 3 (unknown or deleted device)", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > does not try to fit map bounds when no bounds provided", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should warn about self demotion", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should prompt user if upload failed with UIA", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > sets export format on radio button click", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > installs update", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw upon non-20x code", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_already_signed_in", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes that arrived after an unauthorised poll end event", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should disable Match system theme", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 0", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > doesn't allow submitting until there are options", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return true for Room", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add an email address", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render PlainTextComposer when isRichTextEnabled is at false", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new phone number", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should throw UploadCanceledError upon aborting the upload", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders activeTabId tab as active when valid", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with public room filter", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > get() should return undefined for an item not in the cahce", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 2 > renders a paragraph with two names", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called for a replaced event with new content should return the new content body", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > getRoomIds should return the valid room Ids", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command is not successful", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > indicates support for spellcheck settings", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string if date is within same day", + "test/unit-tests/utils/pillify-test.tsx::pillify > should do nothing for empty element", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element additions", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > kills event listeners on unmount", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change only the level of someone with a lower level", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should warn when space is not public", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler correctly when setting filter to All", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and entering a non-email value > should show a message about the wrong format", + "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > should support setting a user timezone", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be downloaded", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends encrypted messages", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept hyphens in name #foo-bar:server.com", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are some functional room members > should only return the non-functional members", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse event permalink via arguments", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with multiple previously pinned messages", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.answer", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to invite another to a space [Chrome]", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should not clear storage", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes font settings through widget URL", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 1 and translates with fallback locale", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks late decryptions vs. undecryptable", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > renders a heading and a paragraph with name and user ID", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Denied for a widget", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfile should return undefined if the profile was not fetched", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should render HH:MM", "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be disabled by default", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains height", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the overflowing case correctly", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when it is dismissed", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > history is generated for certain phases", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text heading", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are joined", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (11-inch); iOS 15.2; Scale/3.00)", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > calls onchange on on tab click", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not ring when incoming call state is ringing but local notifications are silenced", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > calls position handler with position", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > should filter the content", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for pl", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is not in the current space", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forEvent > constructs a link given an event ID, room ID and via servers", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error when bootstraping the secret storage, it shows an error", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns false for all sub-space child rooms when includeSubSpaceRooms is false", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles non-html input", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Odd", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static PNG", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should group hidden event reactions into an event list summary", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format link in front of new line part", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with paragraphs", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic to HTML", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Negative latitude", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a loader while responses are still loading", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should show error when an error occurs", + "test/unit-tests/components/views/voip/DialPad-test.tsx::when hasDial is true, displays all expected numbers and letters", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_USER_DEACTIVATED", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length < B length", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should not collect cross-signing pub key if not set", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > strips /me from messages and marks them as m.emote accordingly", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > removes keyword", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > has no notifications with no rooms", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > does not render create space button when UIComponent.CreateSpaces component should not be shown", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > renders", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > public room > shows a globe", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget without timestamp > should not remove the last widget", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up drafts", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > returns false if either argument is falsy", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders room not found error", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single empty item are not considered markdown", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > should hide unpinnable events found in local timeline", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is verified", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > resets keys in the right order when resetting secret storage and cross-signing", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > Should successfully complete a password flow", + "test/unit-tests/utils/DateUtils-test.ts::formatLocalDateShort() > formats date correctly by locale", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for a single target with a room", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > should return true", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > and a new event appears > should emit the new event", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-relations", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when one message was pinned, and another unpinned", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId(null)", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on desktop", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without content body property", + "test/unit-tests/stores/ActiveWidgetStore-test.ts::ActiveWidgetStore > tracks docked and live tiles correctly", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > when sendReadReceipts setting is disabled > should send a private read receipt", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > destroys and removes beacons when current user leaves room", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should persist credentials", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if bug_report_endpoint_url is falsey", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > for a virtual room > should return return false", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > renders beacon info", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection cursor is not inside a text node", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should disconnect all calls", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Re-sort works when sorter is swapped", + "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > accepts an accessibility role", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (Error) occurs", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 0 and translates with fallback locale", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > doesn't cancel my local vote if someone else votes", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record normal-quality voice if voice processing is enabled", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > still shows an empty badge if hideIfDot us true", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites even if they are also shown in a space", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders menu correctly", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is the exact same moment", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by power level", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > disable calls in large rooms by default", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor in the create event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > displays error when pusher update fails", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog by clicking the background > should close the dialog and show the password input", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the room directory when the explore button is clicked", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders a spinner", + "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 12 hour mode", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns 0 when expiry has already passed", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config is fetched from a file and is empty", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > notices", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return not available and call showNoUpdate when current version matches most recent version", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles multiple users following the same sequence of memberships", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for LocalRoom", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should lookup .well-known for homeserver without protocol", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change update", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for an immediate ready room > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a falsy recording", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > is highlighted when unsent", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should keep arrays the same", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > does not meet room requirements if there are not enough rooms", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > joins the call and closes the toast", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an audio and video device is available > should return the audio/video stream", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is not provided > does not render a link to open the room settings people tab", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > is empty if 3pid features are disabled", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a QR code if the other side can scan and QR bytes are calculated", + "test/components/views/dialogs/ModalWidgetDialog-test.tsx::ModalWidgetDialog > informs the widget of theme changes", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/alice:example.org?action=chat", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to invite", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > auto-approves OIDC requests for element-call", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for image files", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should clear storage", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Passes the feature flag on to the client when asking for visible rooms", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Conferences and Room but no People section", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > filters the rooms", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should cancel search on escape", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should handle when staticOidcClients object is falsy", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show both SSO button and username+password if both are available", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see removed from A->B", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > resolves with current location", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if no rooms are open", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should abort login when we expect to find an access token but don't", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :boat", + "test/unit-tests/utils/export-test.tsx::export > checks if the reply regex executes correctly", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for FR", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders radios correctly", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have contentEditable at true", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@\u00ab should return false", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving to end and all orders are undefined", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > italics, bold, underline and strikethrough render as expected", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for unverified filter", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = true", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in target space", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for non-3rd-party members", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we are checking the sync store", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and validating the link from the mail > should display the confirm reset view and now show the dialog", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should open room settings when clicking the room avatar", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for other input", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was successfully fetched", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = true", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders alternative key name", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > should send the mail and show the check email view", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding actions", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev room mention", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders without a beacon instance", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails without data.flows", + "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from unstable prefix", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > starts rendering stopping error on beaconUpdateError emit", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 0 unreads, getHiddenHighlightCount should return 0", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders handles empty tags", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show banner on hover", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single non-empty item are still markdown", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return the right result for known users", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for event permalinks without a custom label", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > renders only the video call element", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should take user to view room for unjoined knockable rooms", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a beacon that is not live", + "test/unit-tests/components/views/location/Marker-test.tsx:: > renders member avatar when roomMember is truthy", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is falsy", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns false for an unknown asset type", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested blockquotes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should enable encryption toggle and disable field when server forces encryption", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in start of a second non-editable part, with another one before it", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should join subspace when joining nested room", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > should not send receipts again", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should return the expected resizer distributions", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > an unthreaded receipt for the event makes the room read", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with body should return \u00bbuser: body\u00ab", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is replaced", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > handles error when updating history visibility", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate if the device is flagged as migrated", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment cannot be fetched", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for 2 targets with a room", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for highlights", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from SYNCING to SYNCING", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > Favourites and People meta spaces should not be returned when the feature_new_room_list labs flag is enabled", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns correct results after final colon :o", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > emit should forward the call to VoiceRecording", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should execute callbacks in registered order", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with no args", + "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > render the release announcement and close it", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > and an e2e status it should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is edited", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](foobar|)", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > does not render sign out other devices option when only one device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should not moving when the composer is filled", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is not enabled > passes through the dynamic room precessors flag", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in a thread > should render as expected", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Even", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the item in the middle should work", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when cross signing is not ready", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > authComponentStateForError > should return expected error for the registration page", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the kick button calls Modal.createDialog with the correct arguments", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should show knock room join rule when upgrade is enabled", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should render if wrapped in room context", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct > 1", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should convert snake_case to camelCase in simple scenarios", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new email addresses", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with public join rules", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Even", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains some items where one of them is a replacement > should contain the last recently set items", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > simple message renders as expected", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple variable substitution", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Percent-encoded param value", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go to setup e2e screen when user is in encrypted rooms", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute additions", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the export e2e keys dialog on click", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Correctly tags rooms > renders Public and Knock rooms in Conferences section", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for all if percentage is 100", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > allows forwarding a live beacon that has a location", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should clear the requested state when the button tooltip is hidden", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > video room space contains all video rooms", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should not display an E2EIcon when the e2E status = normal", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given more React children", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails with a non-401 status code", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns false for an event with voice content", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does shows context menu when right-clicking options", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for one of them, it should return false", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify room aliases", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > startOidcLogin() > navigates to authorization endpoint with correct parameters", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows the dehydrated devices if there are multiple", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isCreated should return false", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = true", "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing all mentions from content", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should handle when staticOidcClients object is falsy", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should select other homeserver field on open", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should handle emojis", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, device not signed", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > should not show a shield for previously-verified users", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > renders nothing when there is no call", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates an existing list based on the key", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Opens the old room on click", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error from the event index", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show spinner above results when backpaginating", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should update OIDCState for a widget", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for parts of words", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > handles when device is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is false", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw upon non-20x code", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationsEnabled setting is truthy", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 2 days ago", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with args", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate correct preview for message events in DMs", + "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > on sets signed device isolation mode", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > doesn't lookup showHiddenEventsInTimeline while rendering", "test/CreateCrossSigning-test.ts::CreateCrossSigning > should call bootstrapCrossSigning with an authUploadDeviceSigningKeys function", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should ask the user to enter the recovery key", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room can not be previewed", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length > B length", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner whilst QR generating", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when property changes are made", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map emits an error", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from someone else to me", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > sets position on click event", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders a dropdown option for a non-default timeout value", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.audio for audio files", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns true for needsUrlTooltips", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should not display the recovery panel when key storage is not enabled", - "test/unit-tests/components/views/settings/FontScalingPanel-test.tsx::FontScalingPanel > renders the font scaling UI", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding actions", - "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > accepts an accessibility role", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu (except voice messages) in narrow mode", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should launch a confirmation modal", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display a spinner when loading the device keys", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns the latest location event for a live beacon with location", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should not show mute button for one's own member", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until event older than history period is reached", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should display or not placeholder when editor content change", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > renders create space button when UIComponent.CreateSpaces component should be shown", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > hides text when minimized", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale pt", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains geo_uri", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > adds own users beacons to state", + "test/unit-tests/createRoom-test.ts::createRoom > should upload avatar if one is passed", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > throws for an unhandle update cause", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with hyphen in domain part", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should change the layout when selected", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > does not add ambiguous key to unique names", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with args", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Group correctly", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > no-ops if there are no state events", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > all widgets should be in the right container by default", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > sets up position handler with correct options", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentListToRoom with eventRelation when present", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Even", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > displays poll history when tab clicked", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes the toast", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > should show a tooltip with the room Id", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > should send room oob data to start login", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > opens the panel in the given room with the correct phase", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > updates the icon when the encryption status changes", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org/e/event", + "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should accept emoji strings into type=emoji", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 2", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when only an audio stream is available > should return the audio stream", + "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotReachable", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders default tabs correctly", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a recording", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google Nexus 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room settings on button click", + "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on string enums", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid audio files", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user active shortly after activity", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after un-voting", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms per last message ts", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > should override browser shortcuts", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > renders merged timeline", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of another user", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status queued", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally true", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders non-beta labs settings when enabled in config", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > sets the current time in local storage", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while verifying", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near top edge of window", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > should return false", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Prefers sender.name", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > on liveness change > renders stopped UI when a beacon stops being live", + "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without room-ID", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with two pages server side relations > emitFetchCurrent > should emit the server side events", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is undefined", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > shows an undecryptable warning", + "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows an avatar with globe icon and tooltip for public room", + "test/unit-tests/components/views/elements/RoomFacePile-test.tsx:: > renders", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: default > should display the pinned message badge", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > should allow auto-completing multiple times with resets between them", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on others actionable event", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when error is ERROR_INVALID_HOMESERVER", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a Room", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > updates live beacon ids when users own beacons were created on device", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should show both call buttons in rooms smaller than 3 members", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > links", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > removes beacon event id from local store", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should not encrypt the file if the room isn't encrypted", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > can have different appearance to its heading level", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return error when version check fails", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should do nothing if the matrix server version is supported", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > renders correctly", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time left > should not call stop", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should show validation tooltip if passwords do not match", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up in list", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps square brackets", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > creates a new thread on reply in thread click", + "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sun-Sat in short mode", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should call scrollIntoView if specified", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > throws for when a room is not indexed", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should not show the \u00bbinvite anyway\u00ab dialog", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > updates join rule", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > does not set position on geolocate event", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for if no identity server is configured", + "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should render empty state", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > status messages", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if VoIP isn't supported", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > adds trailing slash to relativeLocation when not an empty string", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should start a DM if the profile is available", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > switches to spotlight layout when the widget becomes a PiP", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when there are no beacons", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji when a word is selected", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should call MatrixClient::setPassword with expected parameters", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description when editing a closed poll", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for an enabled feature", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single SSO button if identity_providers is null", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing]() -> testing|", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with an unverified session", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when Recovery key is filled by user", + "test/unit-tests/components/views/Validation-test.ts::Validation > should handle 0 rules", + "test/unit-tests/Notifier-test.ts::Notifier > getSoundForRoom > should not explode if given invalid url", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention without a completionId uses client.getRooms", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > excludes values with incorrect types", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=unavailable/unreachable", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should insert the read-marker in the right place", + "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 12 hour mode", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > creates account data event", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onKeydown/onKeyUp handlers for keys other than space and enter", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > doesn't show a beta pill on normal invites", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns null when the first character is not / # @", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the local notification settings state", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should initialise the rust crypto library by default", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should allow reset of cross-signing", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a button to open the room settings people tab", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not call onSend when Enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with default values > should return the default config", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in an empty composer", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages with no key backup", + "test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx::RoomStatusBarUnsentMessages > should render the values passed as props", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see removed from A->B", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows react button when we can react", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > buttons are disabled if there is an ongoing call", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders invite message", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > operates on the current room if no room is specified", + "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been not denied", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed message events", + "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > defaults to false when no setting exists", "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns mute toggle button if conditions met", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains m.location with invalid uri", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should not render pin button when user can't send state event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for double slashed command", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near bottom edge of window", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for state event", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is expired but live property is true", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > migrates URL previews setting for e2ee rooms", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include attachments", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple tag substitution and translates with fallback locale", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with some candidate servers", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > Dismiss toast if user starts call and skips lobby when using shift key click", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button mousedown when triggerOnMousedown is passed", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data when primary rule is disabled", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element heading", - "test/unit-tests/vector/routing-test.ts::onNewScreen > should not replace history if changing rooms", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed state events", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > should not show knock room join rule", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should allow an Admin to demote themselves but not others", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns the last ts", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should not camelCase a trailing or leading underscore", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support inline katex", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user inactive if no activity", - "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM Room > should render the expected intro", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > dms are only added to Notification States for only the People Space", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > adds users beacons to state and monitors liveness", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > getDefaultDeviceDisplayName > https://develop.element.io/#/room/!foo:bar & Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = develop.element.io: Chrome on macOS", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon with a location correctly", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders invite message with invited email", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using element call for large rooms", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is day before the current day", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds no votes if there are none", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return undefined when no issuer in localStorage", - "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should push a 3pid member card on the right panel stack when payload has an event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in an empty composer", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > before empty line", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when value is a valid theme", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens thread on click", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > assigns different keys to summaries that get split up", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on past poll list item click", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with no responses", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > clears highlight message in the room view store", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection is not a cursor", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind an email address", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Space when user does not have permission to add spaces", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if the given event is not a reply", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > does not open maximised map when on click when beacon is stopped", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > redacts related locations on beacon redaction", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = false", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > dispatches keybackup event when key backup is not enabled", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with preferences tab selected", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a live beacon that does not have a location", "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > paginates", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders stopped state", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should persist credentials", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for admin contact links", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if secret storage is set up", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding msisdn", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases with no candidate servers", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > SetFocus works as expected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected attributes when avatar url for room is truthy", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload to install update", + "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an existing DM > should update the account data accordingly", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns false when users power levels have been changed by default settings", + "test/unit-tests/Modal-test.ts::Modal > forceCloseAllModals should close all open modals", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should show the device settings", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders message count input with default value 100 when export type is lastNMessages", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll end events from a ended poll detail", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > retry button resets location publish error", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not display the tooltip on mouse over when disabled", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device type", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption unavailable > should create an unencrypted room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in the middle of a word", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should not render when asked not to", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders a file as the avatar when supplied", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders an empty context menu for archived rooms", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f emoji", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a call is transferred", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for special case input", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is a not a number", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with help tab selected", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect when the event is not outdated", + "test/unit-tests/Notifier-test.ts::Notifier > setPromptHidden > should persist by default", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates no support for jitsi screensharing", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles 3 joined top level spaces", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Even", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with React function component", "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when parsing is not successful", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > flushes rageshake before quitting", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > getViewRoomOpts > returns viewRoomOpts", - "test/unit-tests/components/views/elements/FacePile-test.tsx:: > renders with a tooltip", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom selection element when renderSelection() is defined", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should cache translations", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > displays a spinner after submitting", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > renders location icon", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a QR code if the other side can scan and QR bytes are calculated", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > sets position on geolocate event", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: default > should display the pinned message badge", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should listen to release announcement data changes in the store", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly with beacons", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is not knock", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at middle of single line", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm error > should set the room state to error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should return forced value is setting is disabled", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix123.org", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind a phone number", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return true for Room", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event with thread info", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show two pinned messages", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the menu", - "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when not animated", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > returns specified room when none of the versions is in hierarchy", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 2-parent variant", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should not show the \u00bbinvite anyway\u00ab dialog", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should not be able to change the power level if `canChangeLevels` is false", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > resets countSeen when no toasts remain", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go to setup e2e screen when user is in encrypted rooms", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered correctly overrides setting", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > unpinAllEvents > should unpin all events in the given room", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline code", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle rejections after unmounting sanely", + "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders share buttons when there is a location", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity trusted and device is signed by owner", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders categories correctly", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the QR code if disabled", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when secret storage is being accessed", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > should render a room without a message as expected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists starting later", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > correctly interpolates", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables individual buttons based on definition.disabled", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button if forceVerification false", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > reset() > clears countseen and toasts", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should show restricted room join rule when upgrade is enabled", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile thread summary > removes the thread summary when thread is deleted", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created less than 24h ago but on a different day", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if Action.FocusMessageSearch is fired", + "test/unit-tests/vector/init-test.ts::loadApp > should set window.matrixChat to the MatrixChat instance", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is true if the current room is open", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > should display the not encrypted status for an unencrypted event when the room becomes encrypted", "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns '...and more' with hasMore", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should unfavourite a room", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage for invalid input", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when rendering a DM room with a single third-party invite > should render the \u00bbwaiting for third-party\u00ab view", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption available > should create an encrypted room", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with labs tab selected", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a keyword responsible for triggering a notification", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance waits for the first to shut down", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have data-is-expanded when it has two lines", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Composer Layout > should have a waveform, no seek bar, and clock", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + multiple modifiers key combo", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (via default)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should scroll to bottom after sending a html message", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > remembers to not warn again", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > does not display advanced section toggle when join rule is not public", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up *eventually* when the first terminated uncleanly", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should create a local room and dispatch a view room event", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > does not return a leading 0 for single digit days", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove an email address", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications when event does not have notify push action", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if no rooms are open", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of another user", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > dispatches reply event on click", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display a connection error when getting login flows fails", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes as normal if the poll is ended", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > reconnects after disconnect in video rooms", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should abbreviate to host if empty pathname", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last month", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes ICE fallback preference through widget URL", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > warns when trying to make an encrypted room public", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete if secrets not cached locally", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions previousEvent is falsy", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should call createCrossSigning when startInitialCryptoSetup is called", - "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the default when the input is not a number", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores trailing `:`", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing backslash", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons in reverse order when room can previewed", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders spinner while device is loading", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 1 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for redacted event", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by name", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > clicking toggle calls onDeviceExpandToggle", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > should render", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption info panel without pending verification", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should render Date separators for the events", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test user mentions", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for other errors", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > saves client information after setting is enabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for de-DE", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once, even with new contexts", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should strip reply fallback", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when ctrl+Enter is pressed", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > userProfilesStore should return a UserProfilesStore", + "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from unedited event", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > user pill uses matrix.to", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with a custom class name", + "test/unit-tests/components/views/voip/VideoFeed-test.tsx::VideoFeed > Displays the room avatar when no video is available", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > get() should return undefined", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'account'", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the timeline window", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for combined verified and inactive filters", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns an error", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = true", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > handles negative numbers", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using browser font size", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > renders live duration dropdown with default option", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > when clicking the pill > should dipsatch a view user action and prevent event bubbling", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when an approval fails", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to unknown space is a nop", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :bow", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - banana", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption verification panel with pending verification", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > logs and opens a dialog on a geolocation error", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns false if device is unverified", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should show error modal when the verification request is cancelled with a mismatch", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert new line into existing document", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should not mangle shift-enter when the autocomplete is open", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends several events when I click different options", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is day before the current day", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > should log the invalid content", + "test/unit-tests/audio/Playback-test.ts::Playback > initialises correctly", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects an ended call", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains dm rooms", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped html", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the events", + "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > calls onChange handler on selection", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 24 hr time format", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should handle Navigator::setAppBadge rejecting gracefully", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for PNG files which cannot be parsed but successfully thumbnail", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.server_notice=", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > acknowledges mute_device widget action", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready without showing update when user registered in last 24", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the room name for notifications", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the new poll option field after clicking add option button", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should start matrix client", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > handles event and calls sendContentListToRoom when data files are present", + "test/unit-tests/editor/range-test.ts::editor/range > range on empty model", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the approve button if the power level is insufficient", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added and removed in the same set", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is true", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits for events other than the latest one", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completionId if present in the completion", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > clicking submit updates device name with edited value", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show branded SSO buttons", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is true", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for all terms & services if no account data", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'maximise' should send the widget to the center", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > shows pin option when pinning feature is enabled", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to cancel a join request", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not allow device verification on session that do not support encryption", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a full m.asset event", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user is not banned", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle updating to a server with no supported flows", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns critical if notification level is Highlight", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should moving when the composer is empty", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons for roomId", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > invite", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders preview space toggle", + "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > shows a spinner at first", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when sentContentListToRoom errors", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed for the same pointer", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when default encryption setting is false", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves identity via module api", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > does not format pure white space", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles absence of backup", + "test/unit-tests/editor/history-test.ts::editor/history > push, undo, push, ensure you can`t redo", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > disables OK button when labs flag is not enabled", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999 as 10M", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a matrix event", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was removed", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when there is not existing selection", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should show an error dialog when no homeserver is found in local storage", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add a phone number", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > can insert a mention into a text node", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a basic string", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block with language specifier", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits no event when a room has no unreads", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes empty analyticsID if the id is not in the account data", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > firing the read receipt event handler with a null event_id calls dispatch with undefined not null", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > usePassPhrase > should use dehydration when enabled", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Incomplete if backup key not cached locally", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a power level combobox", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > unhides the bar when a new knock request appears", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the success dialog when the key backup is finished", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should throw upon non-20x code", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > uses banners display name when available", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should go home on home shortcut", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions are added after app start", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > sort emojis by shortcode and size", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > does not rename session or refresh devices is session name is unchanged", + "test/unit-tests/utils/colour-test.ts::textToHtmlRainbow > correctly transform text to html without splitting the emoji in two", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose default theme if system settings are inconclusive", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render world readable option when room is encrypted", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the start of the timeline", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should have light theme selected", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not clear storage", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hostnames with ports", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the roomid", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: @userMention", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid Recovery Key", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isError should return false", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should replaceEmoticons properly", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles user cancelling during reciprocation", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > calls onchange on on tab click", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > resets seshat", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > overrides my other votes with my local vote", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TF:h", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if no functional members state event exists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing markdown", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly without beacons", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready false", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room when changing join rule to restricted", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds up to nearest day when more than 24h - 40 hours formats to 2d", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should fall back to static config when well-known lookup fails", + "test/unit-tests/utils/objects-test.ts::objects > objectExcluding > should exclude the given properties", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm success > should set the room into creating state and call waitForRoomReadyAndApplyAfterCreateCallbacks", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu when there is no current device", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect crypto version", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with reference relation", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns multiple results in order of search string appearance", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders invite message with invited email", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when no rooms are encrypted", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates if there are unsent messages", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1993-11-01", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on Action.OnLoggedIn", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should work with empty queries", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > clamps the interpolant", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should work with hostnames with ports", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread notification badge", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets export type on change", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme by default", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should switch to dark theme", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when backup creation failed", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders a verified device", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders without a cancel button if forceVerification true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving an Action.FocusSendMessageComposer action", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > appends events into summaries during forward pagination without changing key", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send message when there is no roomId", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should no-op if the badge count isn't changing", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should not respect HTML tags in plaintext message highlighting", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests a space whose alias matches a prefix", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we were waiting for the lock ourselves", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests an 'unread' ! if there are unsent messages", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when space is public", "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should make request complete authorization code grant", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should maintain pointers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > can change the parent hook state when required", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves capabilities via module api", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should remove fresh login flag from session storage", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > should remove the room from the store on unmount", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > does not show a dot if the level is activity and hideIfDot is true", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should support unchecked by default", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > status > updates component when event status changes", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > spaces contain dms which you have with members of that space", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account true", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > without requests to join > renders a paragraph \"no requests\"", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > mx-reply is stripped", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should intercept clicks with a ViewUser dispatch", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should try to start dehydration if dehydration is enabled", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not override an existing account event data", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a message with the correct fallback", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats without seconds", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders leave option when user does not have rights to see space settings", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is no room predecessor, getHiddenHighlightCount should return 0", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms without messages first", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with a verified session", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > upload should raise an error", "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > closes menu if space changes from under it", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > reflects the phase of the current room", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > default error code mapper maps error codes correctly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 3 (unknown or deleted device)", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and clicking \u00bbSign in instead\u00ab > should call onLoginClick()", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with same previous algorithm > should show the expected texts", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width in large mode", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is shown if there is an ongoing call", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 2 pinned event", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only functional room members > should return an empty list", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Does not show search box when there's less than 20 members", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window when it starts with no overlay events", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > adds ambiguous key to all ids with non-unique names", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if userIds is empty", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > Displays edited content and new answer IDs if the poll has been edited", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > avoids cycles", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for all of them, it should return false", "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are pinned", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message if the call was redacted", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should not mangle default order after filtering", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > creates beacon info event on submission", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should warn when space is not public", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (query pos)", - "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > thread context > should pre-populate a thread relationship", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the primaryEntityId if the search term was a permalink", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a user permalink", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should strip v prefix from versions before comparing", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when destroy is called", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > should return liveData from VoiceRecording", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > honours the hour format setting", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Bubble correctly", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month, date, year when activity is in a different calendar year", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should encrypt the file if the room is encrypted", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking cancel button from share type screen closes dialog", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches words only by default", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates if there are unsent messages", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables individual buttons based on definition.disabled", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if that is selected", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > calls onChange on click", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should return 0 for values that cause a division by zero", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show ignore or direct message buttons when member userId matches client userId", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase typed in", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room has only one joined member", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces enabled and wk forces disabled encryption", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room using values set from ForceRoomExportParameters", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is same day as current day", - "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > revokes permissions", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = true", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_declined", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should not call onSend when Enter is pressed", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > closes on close button click", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a refresh token", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if there is no other member in the room", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with floats", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Should have contentEditable at false when disabled", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display errors from bootstrapSecretStorage", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room ID", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders only enable notifications switch when notifications are disabled", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with no args", + "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should force the setting to be disabled if disable_fallback_ice=true", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > does not call onClick when clicking device tiles actions", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends ring on create in a DM (two participants) room", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards beacon location as a pin drop event", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should edit a simple message", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return an empty array on no matches", + "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > checks the persisted value", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at end", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > updates when the list of knocking users changes", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a beacon with live property set to false", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should convert HTML entities", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join disabled > does not render the RoomKnocksBar", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > removes marker on unmount", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > is forcibly enabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns false for all sub-space child rooms when includeSubSpaceRooms is false", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > creates a loud notification", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides a single vote if I have not voted", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no left space", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should return static clientId when configured", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a combobox and attempts to change power level on change of the combobox", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 6h and 10min formats to 6h", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should push a 3pid member card on the right panel stack when payload has an event", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is not enabled > passes the flag in to getVisibleRooms", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for unsupported desktop browsers", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as alert if invalid", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it running into rate limiting > should show the rate limit error message", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should still start a native call", + "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > renders the room options context menu when UIComponent customisations enable room options", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should clear stores", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is provided > renders a link to open the room settings people tab", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return true for Room", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist credentials", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should fail when query params do not include valid code and state", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the first item should work", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not skip to auto join", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if user has no encrypted rooms", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return service_members field of the functional users state event", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should show error if unable to load", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick candidate servers based on user population", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if focusRoomSearch=true", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > opens message context menu on click", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not try to remove client info event that are already empty", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores duplicate :NUM (double port specifier)", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should have disabled submit button initially", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state for legacy DontNotify action", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should not soft crash when joining a room from space hierarchy which has a link in its topic [Chrome]", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle back to room-specific search", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is defined", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from unverified devices", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > submits location", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by last active timestamp", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules when primary rule is disabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates users state when a member is added", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest event was sent by the current user", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > renders dropdowns for input devices", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > does not render other sessions section when user has only one device", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > joins room on primary button click", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Even", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > disables buttons for rooms without send permissions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: /someCommand", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return true for Room", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for state event", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests fully", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should ignore the MSC3812 dehydrated device", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > removes listeners", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is defined but '.m.room.message' isn't, uses .events_default", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show the invite button when canInvite is false", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and a connection error occurs > should show an info about that", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > re-renders on room join rule changes", + "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if no widget_build_url", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders spinner while loading", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content contains a command but is not the first text node", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide read-marker at the end of creation event summary", + "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > renders", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle to all rooms search", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure lexicographic order for prompt", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user should return the profile from the API and cache it", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to invited", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a question and some options", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for only terms that aren't already signed", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when shouldThrow = true and there is an error it should raise an error", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a reply using a slash command", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a disabled SeekBar > should render as expected", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return true for Room", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A < keys for B", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when a member is added", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should not contain the least recently accessed items", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds calls", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should logout of posthog", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should be in loading state when checking the recovery key and the cached keys", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > does not update synced rules when main rule update fails", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is defined", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have focus", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should retry uia request on click", + "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders with a logo by default", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > does not check key backup status again after check is complete", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message and a thread without a reply > should render the message preview", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return true for Room", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > the perParticipantE2EE url flag is used in encrypted rooms while respecting the feature_disable_call_per_sender_encryption flag", + "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback to paused from playing state", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when UI customisation hides invites", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > emote", + "test/unit-tests/components/views/elements/InfoTooltip-test.tsx::InfoTooltip > should show tooltip on hover", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does nothing for empty element", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for empty URL", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should create html message", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > adds relations for a .messages or .effects category command if there is a relation", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 3", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change the power level of the current user", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the main timeline", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases without candidate servers", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new muted room", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be enabled for developerMode", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return true when an issuer is in session storage", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes asterisks", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions previousEvent is falsy", + "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a ModuleSpinner", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > updates filter when prop changes", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the verification requirement is withdrawn", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should return forced value is setting is disabled", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not debounce slow changes", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat two arrays", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > when there is an error fetching backups > prompts user to set up backup", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is required", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are backed up", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@b.org\u00ab should return false", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > gets TURN servers", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display the recovery key", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on start", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag if event doesn't exist", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not unsilence calls when local notifications are silenced", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed properties", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and updating the server config > should show the new homeserver server name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > line breaks", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :kiss", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for a beacon that is already not live", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly with beacons", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show two pinned messages", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders info from a previous event", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites with a reason", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to world_readable", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event that is not room message", + "test/unit-tests/components/views/elements/FacePile-test.tsx:: > renders with a tooltip", + "test/unit-tests/components/structures/SpaceRoomView-test.tsx::SpaceRoomView > SpaceLanding > should show member list right panel phase on members click on landing", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders tabs", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds all top answers when there is a draw", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not do anything for guests", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for a mention that contains punctuation", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add three widgets to top container", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing opening square bracket", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for all -> space transition", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should show the \u00bbinvite anyway\u00ab dialog if the profile is not available", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders devices without available client information without error", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has not yet been started, the displayname and avatar should be null", + "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > thread context > should pre-populate a thread relationship", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if latitude is not a number", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at previous top if given", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > signs out of all other devices from current session context menu", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > hasRecording should return false", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll that I have not voted in", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render", "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > should show edit button if we are the sender and can post an edit", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and clicking \u00bbSign in instead\u00ab > should call onLoginClick()", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a call is transferred", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room swapped", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the verified icon", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should clear the timezone when the publish feature is turned off", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates multiple sequences of repetitions with other events between", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.canonical_alias", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the matrixRTC session has ended", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > destroys recording for a room if it exists in state", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Hides a verified dehydrated device", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > renders poll history tab", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > returns early if current editorRef is null", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction on a thread root", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should launch a confirmation modal", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > changing the filter clears selection", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > dispatch a local_room_event", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a candidate server for the highest power level user in the room", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should throw upon non-20x code", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in another room", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should prompt the user if the key is uncached", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.server_notice=", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing](foobar) -> testing|", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should pin the event if not pinned", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should count different error codes separately for multiple failures with different error codes", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > returns clearWatch function", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing escape closes the autocomplete", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be disabled when the modern layout is not enabled", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when some devices are selected", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should correctly wrap format bold", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles error fetching backup", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders the first 20 answers if 21 were given", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption available > should create an encrypted room", + "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false for 1-1 rooms when widget_build_url_ignore_dm is true", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends private read receipts", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-reactions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content does not contain any mention or command characters", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as unread", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when identity changes", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should return config from config.json", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > calls onClick handler when clicking outside of share buttons", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by ID and join", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show cannot pin warning", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx:: > should fetch github proxy url for each repo with old and new version strings", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > unordered lists", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by last active timestamp", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > updates device", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should create a private room", + "test/unit-tests/editor/model-test.ts::editor/model > emojis > regional emojis should be separated to prevent them to be converted to flag", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time is up > should call stop", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user knock has been denied", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoom > dispatches Action.JoinRoomError and Action.AskToJoin when the join fails", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters when parameters change during the timeout", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0571-04-22", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when user does not have permission to add children", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns true when setting value is true", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > updates map bounds when bounds prop changes", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a basic hierarchy", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders tabs correctly", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll create event when submitted", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should remove fresh login flag from session storage", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that My filter for ThreadPanelHeader properly renders Show: My threads", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 3 days, 6 hours, 48 minutes, 59 seconds formats to 3d 6h 48m 59s", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should support removing unknown keys", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > does not try to publish anything if there is no known position after 30s of inactivity", + "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should update the value when UIStore's value changes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons", + "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Offline' for presence=offline", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not show invalid terms", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends notify event on connect in a room with more than two members", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when UIComponent customisations disable room and space creation", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > resets on cancel", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not do any geolocation when user has no live beacons", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is closed", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove in middle of string", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect unstable as unsupported", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element additions", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks client information", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with a single message previously pinned", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should create an array of given length", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should displays votes on polls not found in local timeline", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in the middle of a word", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for release version strings", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return false for expired items", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if the offset is outside the content length", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 59 seconds formats to 59s", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should skip the queue for the given callback", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the thread root id when provided", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should view in the timeline", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders a button element", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > shows a ghost read-marker when the read-marker moves", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send html message", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave()", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show full date & time on hover", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with public rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > orders rooms by recent with muted rooms to the bottom", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should submit successfully with a valid custom homeserver", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > asks for confirmation when resetting seshat", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (without plain text around)", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isCreated should return false", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a warning message when poll has undecryptable relations", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > does not allow signing out of all other devices from current session context menu", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi for large rooms", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the overlay timeline window", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should untag a room low priority", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill without splitting at the colon", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match basic key combo", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains an invalid geo_uri", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > should render nothing when room has no error or unsent messages", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > overwritelogin > should replace the current login with a new one", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values for portrait images", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @foo:localhost", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should scroll to bottom after sending a html message", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > updates the UI when another session changes the local notifications", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > should call prepareToEncrypt when the user is typing", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > sets notification count when count is changing", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display only the new message button", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child invites", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user passive after 10s of no activity", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test user mentions", + "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > uses the provided language", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders loading beacon UI for a beacon that has not started yet", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > should render the PiP content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with html content", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should show 'no results' if appropriate", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should warn and do post-logout cleanup anyway when logout fails", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when passphrase is filled", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same but order different", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > show non-matching query members with DMs if they are present in the server search results", "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if the user has chosen to disable key storage", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens space settings when space settings option is clicked", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should send a message when the content is modified", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show react button when we cannot react", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > no mentions", - "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns m.location uri when available", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders invite message when invite email mxid match", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom out on zoom out click", - "test/unit-tests/Notifier-test.ts::Notifier > setPromptHidden > should persist by default", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbblacklistUnverifiedDevices\u00ab", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display a dialog if password change succeeded", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the room name for notifications", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > creates local notifications event after a non-cached sync", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested blockquotes", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should not contain the least recently accessed items", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the start of the timeline", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an event in another room with the label \u00bbMessage in Room 2\u00ab", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return empty string when given empty list", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread notification badge", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > should add new DM Invites to the People Space Notification State", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns the event for a location event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should allow silencing an incoming call ring", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays toast while uploading avatar", - "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > returns undefined if neither prefix is present", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > stops existing live beacon for room before creates new beacon", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes subsequent positions", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but rel_type does not match THREAD_RELATION_TYPE.name", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when cross signing and secret storage are ready", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the last item should work", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a live beacon that does not have a latestLocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > avoids cycles", - "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly without an opened room", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should be ok if sync store and a rust crypto store", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > still shows an empty badge if hideIfDot us true", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > waits for messaging when connecting", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders custom user identifiers in the header", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to SSO login", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > emits filter changed event when updateSpace is called even without changes", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > renders options menu", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should spot a signed device", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > renders radios correctly when no value is provided", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for only terms that aren't already signed", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > emits an Update event on marked unread room account data", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > catches an error from localstorage", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return true for Room", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999999 as 10B", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is disabled", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders activeTabId tab as active when valid", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should reset font on Action.OnLoggedOut", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll that I have not voted in", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > handles invalid bounds", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits JoinRoomError if joining the room fails", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not override an existing account event data", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when onChange promise rejects", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should allow unpinning all messages", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows placeholder info if the call isn't loaded yet", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear for event permalinks with a custom label", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an explicitly stopped beacon", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders homeserver_lacks_support", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns an empty object when room map has not been populated", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide the read-marker at the end of summarised events", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > does not display rooms with nsfw keywords in results when showNsfwPublicRooms is falsy", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return true from VoiceRecording", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > dismisses itself once the request can no longer be accepted", + "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sunday-Saturday in long mode", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles with additional spaces coming off them", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Odd", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should reject with usage for invalid input", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications when event does not have notify push action", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at end of string", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an warning E2EIcon when the e2E status = Warning", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Shows migration progress", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto and new version", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with no votes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > kills live beacons when geolocation is unavailable", + "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room", + "test/unit-tests/components/views/location/Marker-test.tsx:: > renders with location icon when no room member", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > should log the invalid content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should ignore when formatted_body is not filled", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (via default)", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > ordering of top container widgets should be consistent even if no index specified", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is /", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors feature is not enabled > passes the flag through to getVisibleRooms", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by prefix", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > prepend text to existing document", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads a specific state key", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted local room > should show the expected texts", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications before syncing has started", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for an URL", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two third-party invites", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show context menu on widget row", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with private visibility", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should should open integration manager on click", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is not opened on the pinned message list", + "test/unit-tests/useTopic-test.tsx::useTopic > should display the room topic", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > does nothing on click when a beacon has no location", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for supported browsers", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders a verified device", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles many users following the same sequence of memberships", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > render QR then back", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom suggestion element when renderSuggestion() is defined", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > type after inserting pill", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 6 hours, 48 minutes, 59 seconds formats to 6h 48m 59s", + "test/unit-tests/components/views/messages/MFileBody-test.tsx:: > should show a download button in file rendering type", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a self-verification", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should initialise oidc client from constructor", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > highlightEvent > should dispatch an action to view the event", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > don't show external conference button if the call is not shown", + "test/unit-tests/editor/range-test.ts::editor/range > replace a part with an identical part with start position at end of previous part", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > tracks layout", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should call createCrossSigning when startInitialCryptoSetup is called", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > 24 hours formats to 1d", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Enabled", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Links to the event in the room if event ID is provided", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with a content body", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts notifications type", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does not re-wrap if called multiple times", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationPositionToTimedGeo() > maps geolocation position correctly", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to HTML messages", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > filters ended polls", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > migrates URL previews setting for e2ee rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts rooms when timeline updates", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns initial screen from session storage", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show a spinner before the promise resolves", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing for muted channels", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic with emoji to HTML", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with unknown algorithm > should show the expected texts", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should upload", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a non-permalink", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no e2ee well known", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks participants", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should allow silencing an incoming call ring", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > does not send chat effects in threads", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (query pos)", + "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should prefer snake_case keys", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > handles error when updating history visibility", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle code blocks", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > does not add double quotes if already present and sets the font as the system font", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > dropping text does not trigger auto-complete", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > doesn't stop messaging when connecting", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should not collapse beacons as part of creation events", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 1 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > inline code", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a group \"asking to join\"", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing pub key if set", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should return empty array when the request is not possible", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown if there is an ongoing call but we are viewing the lobby", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Even", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns true when platform supports notifications", "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders children with map renderProp", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when using itemLimit", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false if the objects are the same but different pointers", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should not fire callback which was added during a dispatch", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org?via=elsewhere.ca", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > getRoomIds should return the valid room Ids", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection cursor is not inside a text node", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon without error when no beacons exist for room", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when use system theme is truthy", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up normally when the first shut down cleanly", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content when map_style_url is misconfigured", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > activates the metaspace on click", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after sync stops", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders a poll", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when no static clientId is configured and no registration endpoint", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the read receipt button calls dispatch with correct event_id", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no default property", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location stable type", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns true when setting value matches incompatible value", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows an unverified dehydrated device", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the pusher state", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions after one publish error", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return the intersection", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify the user to posthog if pseudonymous", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with only non-local votes", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for normal message", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unknown", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > updates > updates on decryption within 1s", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on element differences", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should create new matrix client with credentials", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, and device signed", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should allow changing when neither server nor well known force encryption", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should upload the file and trigger the upload events", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayRescale > should rescale", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > stops beacon when liveness changes from true to false and beacon is expired", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates back to poll list from detail view on header click", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > does not render export format when set in ForceRoomExportParameters", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h3 with correct attributes", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > without encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > should log the invalid content", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when discovery and validation fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length > B length", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unexpected_message_received", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should warn about self demotion", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isError should return false", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > sets and displays audio processing settings", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with public room filter", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Video", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return issuer from localStorage", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > adds an error message when updating notification level fails", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > does not render invite menu item when UIComponent customisations disable room invite", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a live beacon that does not have a location", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > runs the function passed in", "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should create and start new matrix client with credentials", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > should render as expected", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not jump to date if we already switched to another room", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > people", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a redacted event", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards pin drop event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested formatting", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone XS Max; iOS 15.2; Scale/3.00)", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > creates a loud notification", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true when the event for a thread receipt can't be found", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return true for Room", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not display a redacted edit", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an unencrypted room > should show the expected texts", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when audioNotificationsEnabled setting is truthy", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect when the event is not outdated", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should allow setting an identity server", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return false for expired items", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match basic key combo", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not add A-Element-R label if not rust crypto", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page with correct error when login state is not found", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: @userMention", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and feature_dynamic_room_predecessors is enabled > should pass the setting to findPredecessor", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > retry button retries stop sharing", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > shows a spinner when data is null", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message and a load more button when not at end of timeline", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a space room", - "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new email address", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with plain text description", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if there is no room", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should not show 'no results' if we have results to show", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastClone > should break pointer reference on source array", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for all if percentage is 100", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains dm rooms", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the new recovery method dialog", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to false for all of them, it should return false", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by notification state then alpha", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > waits for messaging when connecting", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with federation", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > does not set an initial screen in session storage", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should not fire callback which was added during a dispatch", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should show complete security screen when user has cross signing setup", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term was not a permalink", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace in middle", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 4 when notificationCountType is 4", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without content body property", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if nothing is open", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hours when less than 24h formats to 2h", + "test/unit-tests/utils/membership-test.ts::waitForMember > waits for the timeout if the room is known but the user is not", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should work with empty queries", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > calls retry when retry button pressed", + "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly without an opened room", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should fail to save, load, and delete from a non-existent table", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is the exact same moment", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render block katex", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for only services with un-agreed policies", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > parses a typical pushrules setup correctly", + "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should return the current width of window, according to UIStore", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames other session", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > should go to setup e2e screen", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links with emphasis are \"escaped\" correctly", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should ignore guest accounts when ignoreGuest is true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show ignore or direct message buttons when member userId matches client userId", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should focus when receiving an Action.FocusEditMessageComposer action", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 4 (can't be guaranteed)", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with voip tab selected", + "test/unit-tests/editor/position-test.ts::editor/position > move backwards within one part", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns undefined if notification level is None", + "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders without a logo when showLogo=false", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > sets position on geolocate event", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when there are none", + "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected with detail content", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.archived=", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles tag substitution with React function component and translates with fallback locale", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (11-inch); iOS 15.2; Scale/3.00)", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only regular room members > should return the room members", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > does not treat a command outside the first text node to be a suggestion", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > should show topic modal if no args passed", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for ClipboardEvent", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not call the callback if it\u2019s disabled", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > does not render dropdown when no devices exist for type", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text heading", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > auto-approves capabilities of virtual Element Call widgets", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Rooms are in sorted order after initial seed", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption with expected raw error for a visible event", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite a MXID and an email to a DM", + "test/unit-tests/vector/routing-test.ts::onNewScreen > should not replace history if changing rooms", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for mixed content error", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains m.location with invalid uri", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity is in verification violation", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays toast while uploading avatar", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > defaults to moderator for starting calls", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not add other users beacons to beacon state", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on own actionable event", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of the current user", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should start matrix client", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > gives up", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders error message", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #_foonetic_xkcd:matrix.org", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 3 mins", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should remove fresh login flag from session storage", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show server picker", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > does not include pending root event in the timeline twice", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverified device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention with a completionId uses client.getRoom", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests only rooms matching a prefix", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 1-parent variant", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns all devices when no securityRecommendations are passed", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > findEditableEvent > should not explode when given empty events array", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends a vote event when I choose an option", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > should open user device settings", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + multiple modifiers key combo", + "test/unit-tests/components/views/location/Marker-test.tsx:: > does not try to use member color without room member", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in private room", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > linkification get applied correctly into the DOM", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when WebGl is not enabled", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be decrypted", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > uses beacon owner name as beacon name", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render initial tab when initialTabId is set", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Element video room invites", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with a non-thread relation > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should display a tooltip", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify an MXID permalink", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > tracks message sending progress across multiple rooms", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets space=Home filter for all -> home transition", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should listen to room pinned events", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid image files", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should generate big emoji for an emoji-only reply to a message", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If a third instance starts while we are waiting, we give up immediately", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display information about the recovery key", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns a non-200 status", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for activity", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should throw when pinned event has no sender", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to public", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return false from VoiceRecording", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone; iOS 15.2; Scale/3.00)", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string with duplicate character", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if pinned events do not contain the event id", + "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > opens the room inviter", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event not sent by current user", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up our own device if we're disconnected", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct button when value is provided", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects unmuted", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when crypto is not enabled", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if the app is not in the container", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores all the trailing :", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK not cached", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles full cycles", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FF:h", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions event is falsy", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider renders children as expected", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for poll start event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completion if present and correct format", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for IE", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create loud notification when event does not have sound tweak in push actions", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > hasRecording should return true", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for @room", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > shows verify session toast when account has cross signing", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > checks the event status", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking cancel button from share type screen closes dialog", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token in localStorage when idb fails to save token", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 23 unreads, getHiddenHighlightCount should return 23", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match ctrlOrMeta key combo", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery panel when key storage is enabled", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove a phone number", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally false", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Inactive", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not actionable", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should not has placeholder", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.conferences=", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show react button when we cannot react", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when setup encryption toast has been dismissed", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > renders", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM Room > should render the expected intro", + "test/unit-tests/components/views/avatars/MemberAvatar-test.tsx::MemberAvatar > shows an avatar for useOnlyCurrentProfiles", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > type in empty line", + "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders with children", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button in expanded mode", + "test/unit-tests/integrations/IntegrationManagers-test.ts::IntegrationManagers > getOrderedManagers > should return integration managers in alphabetical order", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return a result", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > should render", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.audio event type", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an expired beacon", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > does not display filter description when filter is falsy", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks in code blocks", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > updates synced rules when they exist for user", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 10s if window un-focused", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should not enable for anyone if percentage is 0", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > can change the parent hook state when required", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > calls onChange on click", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > requests notification permissions and returns result", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > durationSeconds should return the VoiceRecording value", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > renders enable text", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Mozilla/5.0 (Linux; Android 9; SM-G973U Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > renders in error mode", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of last line", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element deletions", "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a specific event", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > user pill uses matrix.to", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Unknown param", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated WEBP", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format word at caret position at beginning of new line without previous selection", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should search and select a user timezone", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should fail to save, load, and delete from a non-existent table", - "test/unit-tests/components/views/location/Marker-test.tsx:: > uses member color class", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time left > should not call stop", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect labs from settings store", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > renders", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > should not send receipts again", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds decrypted events asynchronously", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders error message when update fails", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when the quick settings are open > should not render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should block Ctrl/CMD + k shortcut", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts notifications type", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should allow to invite multiple emails to a room", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Appends a room when you join", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999 as 100K", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > wysiwyg correctly persists state to and from localStorage", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when clicking start a voice message > should try to start a voice message", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can create email pushers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > does not change parent hook state if suggestion is null", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 2 days ago", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon owner mxid as beacon name for a beacon without description", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders tabs correctly", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show widget as pinned", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should create a private room", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the change recovery key panel when the user clicks on the change recovery button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > renders in german", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat three arrays", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should send a message when Ctrl+Enter is pressed", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > can change joining calls power level", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup version", - "test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx:: > calls setAvatarUrl when a file is uploaded", - "test/unit-tests/modules/AppModule-test.ts::AppModule > constructor > should call the factory immediately", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after the first end poll event", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > refreshes beacon liveness monitors when pagevisibilty changes to visible", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Percent-encoded param value", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > renders buttons", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > does nothing on click when a beacon has no location", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > should send a fully read marker and a public receipt", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.org", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label to the set of requested labels", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type Notification dispatches view_room", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with no receipts", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when value is a valid theme", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect device id", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > strips /me from messages and marks them as m.emote accordingly", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for something that is not an URL", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > renders no devices expanded by default", + "test/unit-tests/editor/history-test.ts::editor/history > push, undo, then redo", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias didn't change", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons change live state", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > renders", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > surrounds lists with newlines", + "test/unit-tests/components/views/settings/encryption/EncryptionCard-test.tsx:: > should render", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return true if visibility customisation returns true", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return false", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent widget with back button when viewing the room", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles tag substitution with React function component", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables the checkbox when there is no server support", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should allow keyboard navigation using arrow keys", + "test/unit-tests/editor/position-test.ts::editor/position > move backwards crossing to other part", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders invite menu item when UIComponent customisations enables room invite", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the room name when the room has a valid completionId", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > after empty line", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling a user", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use display name for your others' reactions", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is same day as current day", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > all rooms space does contain rooms/low priority even if they are also shown in a space", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > updates latest location", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Sorting order is maintained when rooms are inserted", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should allow a user to paste a URL without it being mangled", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (with plain text around)", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should return a Playback with the data", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc2516.voice content", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if none of the users has a device", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching threepids fails", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if all conditions are met", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > when MSC3946 dynamic room predecessors is enabled > should call getVisibleRooms with MSC3946 dynamic room predecessors", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > renders expected fields", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return false when no issuer is in session storage", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Removes old room if it finds a predecessor in the create event", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should match snapshot when empty", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backslashes", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > mentions", "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > Public room results", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate e2ee URL previews on a fresh login", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not prompt ask to join", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders handles empty tags", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect user id", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until event older than history period is reached", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens invite dialog when invite option is clicked", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds votes from multiple people", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should unpin the event", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Image", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be ok if MigrationState greater than `NOT_STARTED`", - "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly with an opened room", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general tab if initialTabId tab cannot be rendered", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static PNG", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when supported", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > does not update the timezone when userTimezonePublish is off", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget with stickyPromise > should wait for the sticky promise to resolve before starting messaging", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no room", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest valid unknown MXIDs", - "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotReachable", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to custom value when custom input is blurred blank", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > sets map center to centerGeoUri", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > auto-approves OIDC requests for element-call", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > fails if the supplied URI is empty", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show password and confirm password fields in separate rows", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are missing", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > does not treat a command outside the first text node to be a suggestion", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is not opened on the pinned message list", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a beacon with live property set to true", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should move a widget within a container", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create space dialog on add space button click", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create loud notification when event does not have sound tweak in push actions", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we display the banner", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested unordered lists", - "test/components/views/dialogs/ModalWidgetDialog-test.tsx::ModalWidgetDialog > informs the widget of theme changes", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > renders in error mode when displayStatus is error", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should throw UploadCanceledError upon aborting the upload", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a string enum", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo error permissiondenied correctly", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at start of string", - "test/unit-tests/components/views/location/MapError-test.tsx:: > does not render button when onFinished falsy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers not allowed by ACLs", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show the invite button when canInvite is false", - "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without room-ID", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call lobby is viewed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Opens the old room on click", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches case-insensitive", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > a notification and a highlight summarise to a highlight", "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > updates history visibility", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestCreation() > sorts beacons by descending creation time", - "test/unit-tests/utils/createVoiceMessageContent-test.ts::createVoiceMessageContent > should create a voice message content", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions after one publish error", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace in middle", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > should return false if the room has no actual room id", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > redacts related locations on beacon redaction", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have active class when enabled", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for the given relation", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the last message when the pinned event array changed", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes around other markdown", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate correct preview for message events in DMs", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should scope the location for a widget when setting OIDC state", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 59 minutes formats to 59m", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > handles event and calls sendContentListToRoom when data files are present", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val < 0", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room version", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for multiple paragraph", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when cross signing and secret storage are ready", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should has placeholder", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends notify event on connect in a room with more than two members", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders disabled invite button when current user is a member but does not have rights to invite", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a sub-space existing in multiple places in the space tree", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for 401", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > calls", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon fails consistently", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with no candidate servers", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should show loaders while 3pids load", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type ThreadsList dispatches show_thread", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = false", - "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback to paused from playing state", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in target space", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows react button when we can react", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > disables Element calls", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should hangup all legacy calls", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has changed category", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should log error and return to welcome page when userId lookup fails", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth enabled", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h2 with correct attributes", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the warning icon", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should switch to dark theme", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > should report to analytics on resize stop", + "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should insert at the correct end", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for notification when forced", + "test/unit-tests/settings/controllers/SystemFontController-test.ts::SystemFontController > dispatches a system font update action on change", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month, date, year when activity is in a different calendar year", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is replaced with an unencrypted one", + "test/unit-tests/utils/export-test.tsx::export > numberOfMessages exceeds max", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread thread notification badge", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should change the setting when toggled", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after poll ended", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > signs out directly if no rooms are encrypted", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while loading", + "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > off sets all device isolation mode", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known default for encryption setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates rooms state when a child room is added", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are available", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should throw error if server fails with something other than UIA", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls invite on approve", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is larger than max", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct < 0", + "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does not render the permalink", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the deny button if the power level is insufficient", + "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding plural translations", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with floats", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions at app start have been dismissed", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks without protocol", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config 404s", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns true for needsUrlTooltips", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks outside of code blocks", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for ConnectionError", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > activates the space on click", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should reuse the result", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses hs url hostname when serverName is falsy in args and config", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return true from VoiceRecording", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles tag substitution with React function component and translates with fallback locale, attributes fallback locale", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = false", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status encrypting", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when notifications are on for email", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button and clicks explore rooms", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > renders formatted body without html correctly", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should display an error if the link has not been clicked", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify using the server's analytics id if present", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders something if member.membership is 'invite' or 'join'", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns unavailable for unavailable error", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > should return a toast once one is displayed", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should not show call buttons in a room with more than 2 members", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 2-parent variant", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with no args", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on own actionable event", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should not render a room with a activity in the TAC", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for home -> all transition", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > updates state and emits beacon liveness changes from true to false", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds down to nearest day when more than 24h - 26 hours formats to 1d", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.recent=", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to other rooms for orphaned room", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @_foonetic_xkcd:matrix.org", + "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > revokes permissions", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with empty content body property", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show a thumbnail while image is being downloaded", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show multiple SSO buttons if multiple identity_providers are available", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > toggles device expansion on click", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > does not render input when set in ForceRoomExportParameters", "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > renders an error when updating keywords fails", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with two winning answers", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block followed by text after a blank line", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with people", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no homeserver support", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.notice correctly", - "test/unit-tests/ContentMessages-test.ts::uploadFile > should not encrypt the file if the room isn't encrypted", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout if the client is not viable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link with text", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > updates history visibility on toggle", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Even", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 6h and 10min formats to 6h", - "test/unit-tests/components/views/messages/DownloadActionButton-test.tsx::DownloadActionButton > should show error if media API returns one", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format link in front of new line part", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should not display a placeholder", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes back to default style when wire errors are cleared", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > calls on beacon click", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changes for difference in pointers", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text additions", - "test/unit-tests/Modal-test.ts::Modal > open modals should be closed on logout", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room running into the create timeout > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sending", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same but order different", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > disables buttons for rooms without send permissions", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the read receipt button calls dispatch with correct event_id", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is not required", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules when primary rule is disabled", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > delete() should not raise an error", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is an unknown room in the predecessor event, it should not count predecessor highlight", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves identity via module api", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onSelect on checkbox click", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should unpin the event if already pinned", - "test/unit-tests/createRoom-test.ts::createRoom > should strip self-invite", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested lists", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > overrides my other votes with my local vote", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > doesn't show a beta pill on normal invites", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming state updates to the widget", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > clear all notifications > clears all notifications", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has not changed category", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when user is not a member", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > persistOidcAuthenticatedSettings > should set clientId and issuer in localStorage", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Odd", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks late decryptions vs. undecryptable", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when encryption by default is disabled > should allow to invite more than one email to a DM", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if setting true and existing event is true", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for home -> space transition", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on element differences", - "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders when silence button when call is not silenced", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 1", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic to HTML", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed state events", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should debounce quick changes", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_declined", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback with the new room ID for a created room", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > room invite gets added to relevant space filters", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders without a room", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a string enum", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of an unknown screen", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote even if I did it on another device", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space does not contain all favourites", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for an audio message event", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the set up recovery key when the user clicks on the set up recovery key button", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to the beginning", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when Shift+Enter is pressed", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render a single pinned event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when user inputs any whitespace after the special character", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should move calls between rooms when remote asserted identity changes", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > for a maximised (centered) widget > clicking 'un-maximise' should send the widget to the top", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > opens the share dialog with the correct share link in an encrypted room", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > exports when export type is NOT lastNMessages and message count is falsy", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, finished poll", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > removing whole string", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > instance should always return the same instance", + "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from original event when edited", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with people filter", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when not supported", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.favourite=", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from RECONNECTING to ERROR", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 2 when notificationCountType is 2", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in the only feature group are supported", + "test/unit-tests/utils/WidgetUtils-test.ts::getLocalJitsiWrapperUrl > should generate jitsi URL (for defaults)", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false if the objects are the same but different pointers", "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onClick on device tile info click", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > handles when a room is not indexed", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return false", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should handle serverConfig updates correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a cancelable status", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return true for Room", - "test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx::ConfirmUserActionDialog > renders", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is not known", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is true", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at start", - "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if no thread in the room has notifications", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > italics, bold, underline and strikethrough render as expected", - "test/unit-tests/utils/export-test.tsx::export > tests the file extension splitter", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias changed", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > should clear the error on reconnect", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org", - "test/unit-tests/editor/history-test.ts::editor/history > undo after keystroke that didn't add a step is able to redo", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button does work as expected", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for unsent messages", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button emojis correctly", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render export type when set in ForceRoomExportParameters", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from PREPARED to SYNCING", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should start a DM when clicking a person", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account false", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > getUserIdsFromCompletions() should map completions to user id's", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes analyticsID through widget URL", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :+1", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > does not call showJoinRoomError() when canAskToJoin is true", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account deactivation feature is disabled", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form without change server link when custom URLs disabled", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > not to send chat effects on message sending for threads", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores all the trailing :", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should proxy remove to delete and return it", + "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > requires registration when a guest tries to invite to a room", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > pretends to request notification permission", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user info", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > respects defaultSize prop", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for invalid version strings", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > does not allow forwarding a poll", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > renders the room options context menu when UIComponent customisations enable room options", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for unsupported browser if user accepted already", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Negative longitude and explicit CRS", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRooms if no completionId is present and completion starts with #", + "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information with url for non-electron clients", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as tooltip if custom tooltip set", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > people space does contain people even if they are also shown in a space", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when cross signing feature is not supported", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > handles when a muted room is unknown by the room list", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > updates map center when centerGeoUri prop changes", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should abbreviate to host if empty pathname", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not clean up listeners even if start was called multiple times", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > sets new beacon event id in local storage", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not show the autocomplete when room is undefined", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should enable Match system theme", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should handle download errors", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > when not hovering the pill any more > should dimiss a tooltip with the room Id", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not close settings if account not deactivated", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with room name", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user timezone if set", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting within a word", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should combine search results when the query is present in multiple sucessive messages", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should consider pointers when testing values", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a map with markers", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 18443 to 5h 7m 23s left", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when current device is unverified", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > cancels changes", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return null when the release announcement is disabled", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > closes on close button click", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for state event", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should allow user to revert from a custom server to the default", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > can change the parent hook state when required", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow signing out of all other devices from other sessions context menu", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with no args", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to consent", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates in app when clicking view in timeline button", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format multi line code", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with 1 \"other\"", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > should render login page", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage safari", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should show error if user tries to use non-image file", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does not show copy link button when not supplied a link", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote if the poll is undisclosed", + "test/unit-tests/utils/exportUtils/exportCSS-test.ts::exportCSS > getExportCSS > supports documents missing stylesheets", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active after 10s of no activity", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > invite to a subspace is only shown at the top level", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > creates a thread when needed", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends unencrypted messages", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when the read receipt is earlier than the latest event", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > off should forward the call to VoiceRecording", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should use defaultName from props", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on others actionable event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a read receipt update", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have active class when reversed", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no right space", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders sound on button when call is silenced", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending redaction", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverifiable device", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have never been online", + "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns m.location uri when available", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > disables form while device name is saving", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Can reset secret storage", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should search and select a user timezone", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of highlights", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > global mute", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > calls onClick", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > does not add a geolocate control when allowGeolocate is falsy", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.invite=", + "test/unit-tests/languageHandler-test.tsx::languageHandler > getAllLanguagesWithLabels > should handle unknown language sanely", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is shown", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at start of single line", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999 as 1M", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a device with no metadata", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format word at caret position at beginning of new line without previous selection", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when multiple aspects change", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default encryption setting is set to something other than false", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS is loaded during pooling", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should return clientId from localStorage", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a verify button when the encryption is not set up", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space doesn't contain rooms/low priority if they are also shown in a space", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 6.0; rv:40.0) Gecko/20100101 Firefox/40.0", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/webp", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text additions", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/SSK not cached", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS are preloaded", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > values() should return the items in the cache", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct JSX message when room join rule changed to restricted", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message if the call was redacted", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should apply to word range is within if length 0", + "test/unit-tests/components/views/messages/MStickerBody-test.tsx:: > should show a tooltip on hover", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> space transition", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes longer backticks in between text", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open the tooltip when hovering a text", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when changed alias and added alt alias", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > with an existing widgetApi with requiresClient = false > should display the \u00bbPopout widget\u00ab button", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should reuse the result", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > should force calls to silent when local notifications are silenced", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > updates with new locations", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return full time & date string otherwise", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for slash separated text", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon owner mxid as beacon name for a beacon without description", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > no switch required, room is in current space", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:bar.com", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is undefined", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if a room other than the current room is open", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp floats", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with public visibility", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no pinned event", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor in the create event, it should count predecessor highlight", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was missed", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a space room", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit set in ForceRoomExportParameters is larger than 2000", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h4 with correct attributes", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly orders sequences of transitions by the order of their first event", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > instance > should return an instance", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button is not shown when there is nothing to copy", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during protocol negotiation", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to change the recovery key > should display the recovery key", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on active poll list item click", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > sends an unthreaded read receipt when the Mark All Threads Read button is clicked", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Integer lat and lon", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Renders as expected", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect userText", "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is NaN", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should update the options from the opened dialog", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > notification level", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders success screen when export is finished", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns null for a poll start event", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Recently used emojis are correctly sorted", + "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time with hours", + "test/unit-tests/utils/export-test.tsx::export > maxSize exceeds 8GB", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TF:h", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if no room", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > reflects the phase of the current room", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month and date when last activity is more than 6 days ago", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate removed properties", + "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > addEncryptedLiveEvent > should add file msgtype event to filtered timelineSet", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Room when user does not have permission to add rooms", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the new recovery method dialog", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en-GB", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for es-ES", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display display a poll event", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a beacon with live property set to true", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a beacon that does not have a shareable location event", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > returns human readable name", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with plain text content", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing header", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default is not set to false", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > other rooms are added to Notification States for all spaces containing the room exc Home", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses m.predecessor when it's there", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK not cached", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock count is greater than 3 > renders a paragraph with two names and a count", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback with a reason", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should open idp in new tab on click", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > leaves space when leave option is clicked", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at -16px if given no previous position", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders last seen ip metadata", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by key", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org/e/event?via=elsewhere.ca", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders back button from location picker screen", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > waits for messaging when connecting", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > closes and displays error when geolocation errors", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-GB", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays when session is connected to key backup", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for words", + "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is a M_NOT_FOUND error, it should report ready, displayname = MXID and avatar = null", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general tab if initialTabId tab cannot be rendered", + "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was ended", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > asks users to confirm when setting room to encrypted", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo position unavailable error correctly", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the other member has no avatar URL", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Odd", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :grinning", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > updates the video room space when the room type changes", + "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected without detail content", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects if the widget dies", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: #roomMention", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders live time remaining when displayLiveTimeRemaining is truthy", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should render results when the promise resolves", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added an alt alias", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders rejecting message", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > for an empty DM room list > should return undefined", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) (5); Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description if we choose it", + "test/unit-tests/utils/export-test.tsx::export > checks if the export format is valid", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address for server name", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should render the component", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return true if user can pin or unpin", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > excludes rooms that are not found by matrixClient", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isError should return true", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when well-known force_disable is true", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using fallback font size", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Ignores m.predecessor if labs flag is off", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration response is invalid", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should send an event when clicked", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for added room rules", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > resets countSeen when no toasts remain", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a screen source in the default tab", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > updates individual keywords content rules when keywords rule is toggled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a RoomMember should start a DM", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users in the user directory", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string does not exists at all and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > returns no unsent messages", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should cancel editing and ask for event removal when message is empty", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with a single, unparticipated thread", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button mousedown when triggerOnMousedown is passed", + "test/unit-tests/components/views/settings/FontScalingPanel-test.tsx::FontScalingPanel > renders the font scaling UI", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are not granted", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > triggers the secondary action callback", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent Jitsi widget with back and leave buttons when not viewing the room", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a desktop device type", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle divs", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Returns null when the room ID contains no colon", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > with encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces enabled and wk forces disabled encryption", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > test user flow", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 23 to 23s left", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: File > should not display the pinned message badge", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should handle unknown user agent sanely", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return undefined when no issuer in localStorage", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new email address", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in both hemispheres", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting 3pid invite with no identity server", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates ranges on an existing list based on the key if there's no other changes", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map emits an error", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is enabled", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders a verified device", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has been started and there is a profile, it should return the profile display name and avatar", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > opens forward dialog with correct event", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > translates a basic string and translates with fallback locale", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts literal HTML topic to HTML", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general settings tab when no initialTabId", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when caret is not at beginning of the text", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render an avatar or link when called with inMessage = false and shouldShowPillAvatar = false", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sets the correct thread in the room view store", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but rel_type does not match THREAD_RELATION_TYPE.name", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should set logged in and start MatrixClient", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.video event type", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline updates without a live event", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 144 hours ago", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with both the legacy and new keys removed", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for non-live events (scrollback)", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first valid space when selected metaspace is disabled", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix123.org", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option when user does not have rights to pin", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo timeout error correctly", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at end", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > disables play button while playback is decoding", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when group call is already connected", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user swapped", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include avatars", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element call room", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > renders banned users", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > ends the call immediately if the session ended", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Closes the dialog when the form is submitted with a valid key", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not render the component when not ready", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > displays no results message when there are no devices", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the result was forgotten", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by power level", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a number enum", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on web and not on macOS", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > during crypto init", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should show feedback prompt", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding msisdn", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 2", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > no-ops for idential changes", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should not clamp numbers in range", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > renders when enabled and room join rule is knock", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=true on non-last event if last event is not eligible for special receipt", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ViewRoomError if the alias lookup fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length > B length", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on room event", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > updates list order when devices change", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic with emoji to HTML", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as read", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = true", + "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is not bridging messages to any platform", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is undefined", + "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > renders filter container when enabled by UIComponent customisations", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > returns deviceType unknown when user agent is falsy", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should pass event to posthog", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to connect if the widget returns an error", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support block katex", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined on clients with no crypto", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > @room pill", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders insecure_channel_detected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for an emoji suggestion", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with 0 capacity it should raise an error", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can approve and deny", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows reply button when we can reply", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > spoiler", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after 10s > the last Jitsi widget should be removed", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should re-render favicon when setting error status", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should work when resolveThreePids raises an error", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should intercept clicks with a ViewUser dispatch", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with reference relation", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display 'Continue' button on permission load", + "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotConfigured", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has badge style for notification", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to true when setting true", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add widget to top container", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to false", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a plain message in open street maps", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should not be ok if sync store but no crypto store", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > can return a single empty div in case where room.getMember is not falsy", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should capture permalink clicks", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 01-12 in 2-digit mode", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - ", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > opens reaction picker on click", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Multiple unknown params", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > meets room requirements if there are enough rooms", "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should restore guest accounts when ignoreGuest is false", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect restricted rooms in v9 and v10", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is in the current space", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.RoomLoaded > updates viewRoomOpts", - "test/unit-tests/createRoom-test.ts::createRoom > should upload avatar if one is passed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not display the tooltip on mouse over when disabled", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isNew should return true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should not moving when the composer is filled", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles tag substitution with React function component and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > does not render back button on share type screen", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in home space", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (one of the pinned widgets)", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should not display an E2EIcon when the e2E status = normal", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites with a reason", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should handle loud notifications", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the approve button if the power level is insufficient", - "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from unedited event", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not raise an error on getPendingEvents (implicitly check for pendingEventOrdering: detached)", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #foo:localhost", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists starting later", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse mixed keyword notifications", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room export dialog on button click", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999 as 999", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with no args", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", - "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > requires registration when a guest tries to invite to a room", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly without beacons", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we display the banner", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (same widget)", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes underlying cause error", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > deselects all sessions when all sessions are selected", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > does not send any requests if everything has been read", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > waits for other tab to stop during startup", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > pins event on pin option click", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > and forgetting the read markers, should send the stored marker again", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events with custom parameters", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > doesn't send a receipt if no room is in context", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > should return false", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders invite message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on logged in action", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token when encrypting the token fails", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the pusher status when clicked", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render selected items passed in via props", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new phone number", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add pasted values", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should call onForgotRecoveryKey when the 'Forgot recovery key?' is clicked", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should not show knock room join rule when upgrade is disabled", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server .well-known forces disabled encryption", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles text in tags", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and when beacon liveness changes from false to true", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for fr", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should display the tooltip on mouse over when not disabled", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition when unmounted", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from me", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should suggest e-mail even if lookup fails", + "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > should send the voice recording", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clickign with a drag motion below the threshold of 5px, it should pass the click to the children", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables OK button when labs flag is toggled to enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the invite button will call MultiInviter.invite", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops live beacons when geolocation permissions are revoked", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > default error code mapper maps error codes correctly", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has not changed category", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; OpenBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: OpenBSD", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when the content has changed", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > If the predecessor room is not found > Shows an error if there are no via servers", + "test/unit-tests/modules/AppModule-test.ts::AppModule > constructor > should call the factory immediately", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > creates a new list based on the key", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the start when all is undefined", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should change candidate server when highest power level user leaves the room", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a plus menu for spaces", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with true if RoomState.newMember fires", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is an int in range", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call ended cleanly", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should still attempt to revoke refresh token when access token revocation fails", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores extra answers", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastClone > should break pointer reference on source array", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time left > should not call stop", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code in backticks", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > before empty line", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders map correctly", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > does not force a reload on sync unless the client is coming back online", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders when selected option is not in options", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.third_party_invite", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty content should return null", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon with location publish error when clicked", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should return `scalar_token` from API /register", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > handles homeserver too old error", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term is a permalink and the primaryEntityId is null", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > remembers to not warn again", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Nulls in location are not shown in URI", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hostnames with ports", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with a string calls the onChange argument", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > falls back to the completion for a room if completion starts with #", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows timer if the call is connected", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should handle there being no keyword rules", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was answered elsewhere", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > translated correctly when plural string exists for count", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add to selection on click of user tile", + "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should pluralise 5 files correctly", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > disables submit button until geolocation completes", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isCreated should return false", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > replacements in the wrong order", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render WysiwygComposer when isRichTextEnabled is at true", + "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders without children", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should create a public room", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders bridges settings tab when enabled", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept repeated TLDs (e.g .org.uk)", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val > 100", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon has no location", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should recover from a server exception", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with language specifier", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after the first end poll event", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0062-02-05", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > returns early when suggestion is null", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when participants change", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a cached sync", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, unfinished poll", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > submits location", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to home space", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if some of the users don't have a device", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should reset font on Action.OnLoggedOut", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100", "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores duplicate :NUM (double port specifier)", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when we don't have any receipt for the thread", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore is falsy", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the right > should return a position to the right", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure existing prompt stays even if a new violation with lower lexicographic order detected", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are backed up", + "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component with the recommended tag", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > orphans space does contain orphans even if they are also shown in all rooms", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > mentions do not propagate", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is not the latest beacon for a user", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should throw when no clientId in localStorage", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide experimental extension", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > should not render banned section when no banned users", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for rooms without beacons", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when editing with plain text", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the device keys", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should not show 'no results' if we have results to show", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should rotate the pinned events when the banner is clicked", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should do nothing for a range with length 0 at initialisation", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return true for Room", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should toggle a selected item when a suggestion is clicked", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onSend when Enter is pressed when ctrlEnterToSend is false", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of membership events quickly", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance waits for the first to shut down", + "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without ID", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should be possible to disable the checkbox", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders nothing if member.membership is undefined", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left and some orders are undefined", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > remembers the event being replied to when swapping rooms", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > does not show account management link when not available", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns id of the event being replied to", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain if passphrases don't match", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > has the search field", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > calls update callback when a toast is added", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > breacrumbs > should send breadcrumb updates over the IPC", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at end of single line", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no experimental extensions are provided by a registered module", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate added properties", + "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders without children", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 0 (Unknown error)", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders location publish error", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOrFetchProfile > should return a profile from the API and cache it", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > restarts publishing a beacon after resetting location publish error", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event that is not room message", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'key storage out of sync' toast", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles noisy", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows ended vote counts of different numbers", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no encrypted rooms", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to disconnect if the widget returns an error", + "test/unit-tests/theme-test.ts::theme > setTheme > applies a custom Compound theme", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > can render replies", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing trailer", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without ID > should raise an error", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > creates a marker on mount", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns false when setting value is not true", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > append text to existing document", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect knock rooms in v7 and above", "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders check code confirmation", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders simple word changes", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks outside of code blocks", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu when there is no current device", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error with fallback message identity server config has fail error", - "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders tabs", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server even if a local suggestion gets filtered out", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims extracted from id_token in localStorage", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows timer if the call is connected", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a verified device", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction on a thread root", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > renders qr code login section", - "test/unit-tests/editor/history-test.ts::editor/history > keystroke that didn't add a step can undo", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the spinner when creating backup", - "test/unit-tests/components/views/voip/DialPad-test.tsx::when hasDial is true, displays all expected numbers and letters", - "test/unit-tests/utils/objects-test.ts::objects > objectExcluding > should exclude the given properties", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting changes", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns the latest location event for a live beacon with location", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for other input", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set on clients with no crypto", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns true when snooze timestamp in storage is less than a week ago", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > renders buttons", + "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders marker correctly for self share", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > should show the expected texts", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and emits beacon liveness changes from true to false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a @userMention is followed by other text", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is enabled > passes the flag in to getVisibleRooms", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (explicit)", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > escapes angle brackets", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a persistent app > should render", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders join button", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > goes to labs flag screen after live options is clicked", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room pinned messages on button click", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick prefer candidate servers with higher power levels", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return undefined for expired items", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays confirmation dialog if rooms are encrypted", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to set up backup if there is no backup on the server", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders error message when update fails", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with many \"others\"", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place according to key index", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return empty string when given empty list", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows view in room button when the event is a thread root", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not pinnable", + "test/unit-tests/editor/history-test.ts::editor/history > history step is added at word boundary", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > decrypts event if needed", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > shows chat effects on message sending", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the change recovery key panel when the user clicks on the change recovery button", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a beacon that has a shareable location event", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getMediaConfig > gets the media configuration", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should work for empty arrays", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if it is not a paste event", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a closing square bracket work", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should allow to change the recovery key when everything is good", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > insert text into empty document", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > renders thread button on own actionable event", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached, even if other RoomState.newMember events fire", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > should validate delegated oidc auth", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I voted but the poll is undisclosed", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should show error if /publicRooms API failed", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the overlay timeline", + "test/unit-tests/utils/export-test.tsx::export > tests the file extension splitter", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests only spaces matching a prefix", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at start of string", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > focuses on beacon location on sidebar list item click", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; FreeBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: FreeBSD", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should mark selected suggestions as selected", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > ignores thread updates for unknown threads", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a thread message with the correct fallback", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > bold within a word", "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > should not render the send button", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should continue to post login setup when no session is found in local storage", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should reuse initialised oidc client", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should not move if there is no room", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > surrounds lists with newlines", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads a specific state key", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for es-ES", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling on", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in another room", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > ordering of top container widgets should be consistent even if no index specified", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should close when selecting default homeserver and clicking continue", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not accountData", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is enabled", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > does nothing on click if already active", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when the content has changed", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request succeeds", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > orders rooms by tag order without categorizing", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > maps geolocation position error and calls error handler", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished with sas when Interactively verify by emoji is clicked", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice\u00ab should return false", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should not show restricted room join rule when upgrade is disabled", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return false for default level -50", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a string to german", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add relation to message", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TT:h", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should fallback to stored issuer when no client well known is available", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed state events", + "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding translations", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should render Date separators for the events", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render same modifier twice", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple tag substitution and translates with fallback locale, attributes fallback locale", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > sends chat effects", + "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens without a pickle key", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > correctly emits events for metaspace changes during onReady", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth enabled", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with fallback", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentToRoom when parsing is successful", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > has() should return false", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > remains connected if we stay in the room", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > informs widget of theme changes", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbResend\u00ab > should should resend the mail and show the tooltip", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and confirming the login > should dismiss the device", "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should not let a slower response to an earlier query overwrite the result of a later query", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an unknown email > should show an email not found message", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display only the new message button", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders div with role button by default", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing phone numbers", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns true for an event with a renderer", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is an int in range", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = true", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if there is no other member in the room", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns false when users power levels have been changed by default settings", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user active after activity if no window focus", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should create and start new matrix client with credentials", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 18443 to 5h 7m 23s left", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a timeline update", - "test/unit-tests/components/views/auth/AuthFooter-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > shows the session ID and key", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on element differences", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button when user cannot react", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick no candidate servers when the room has no members", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > returns false if either argument is falsy", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if there's already a call", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally false", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown devices", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > renders recording playback", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > fails to update delayed events", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to ", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given 2 React children", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is undefined", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight when message's push actions does not have a highlight tweak", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show sent & received time on hover if passed", - "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders null when event does not have an extensible poll start event", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should display oidc-native continue button", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > activates the metaspace on click", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert new line into existing document", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with day of week and time when last activity is less than 6 days ago", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 7 (Sender's verified identity has changed)", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TF:h", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling an at-room completion", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > should open user device settings", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > updates join rule", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with notifications tab selected", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > shows the autocomplete when text has @ prefix and autoselects the first item", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time is up > should not call stop", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with 0 capacity it should raise an error", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not close settings if account not deactivated", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description if we choose it", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > returns early if current editorRef is null", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should convert HTML entities", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets export type on change", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the device keys", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > succeeds when no synced rules exist for user", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and '.m.room.message' are defined, uses the value", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should set fresh login flag in session storage", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should moving when the composer is empty", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Odd", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon with location publish error when clicked", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > destroys beacons", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses serverName from props", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for ES", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests an 'unread' ! if there are unsent messages", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity is in verification violation", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates the user has been invited to a channel", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notification type", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at start of single line", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls kick on deny", - "test/unit-tests/settings/controllers/SystemFontController-test.ts::SystemFontController > dispatches a system font update action on change", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the export e2e keys dialog on click", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when there is no snooze in storage", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons for roomId", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation is unavailable", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with a content body", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for redacted poll start", - "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false if widget_build_url is unset", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return not available and call showNoUpdate when current version matches most recent version", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns default if notification level is Activity", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when we don't have any receipt for the thread", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > creates a pickle key with userId and deviceId", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content when map_style_url is misconfigured", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline where toStartOfTimeline is true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns kick, redact messages, ban buttons if conditions met", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](|)", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert in middle", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > allows forwarding a room message", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getApps > should return apps from the widget store", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > creates beacon info event on submission", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/png", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a heading with count", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows un-voting by passing an empty vote", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should export", + "test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx::KeyboardUserSettingsTab > renders list of keyboard shortcuts", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbStart DM anyway\u00ab > should start the DM", + "test/unit-tests/utils/export-test.tsx::export > checks if the icons' html corresponds to export regex", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders check_code_mismatch", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does show copy link button when supplied a link", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.suggested=", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data when primary rule is disabled", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns default theme when value is not a valid theme", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after joining", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > persistOidcAuthenticatedSettings > should set clientId and issuer in localStorage", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/gif", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = false", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist login credentials", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > does not open maximised map when on click when beacon is stopped", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with markdown empasis in them are getting properly HTML formatted", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > clear() should clear the cache", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > renders the devtools dialog", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse adjacent member events", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing by default", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > creates a geolocate control and adds it to the map when allowGeolocate is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if you have no friends and cannot invite friends", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'pickleKey'", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in one of the feature groups are supported", + "test/unit-tests/models/Call-test.ts::ElementCall > create call > don't sent notify event if there are existing room call members", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll start event from an active poll detail", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > retains poll disclosure type when editing", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown remains plaintext", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > logs and resets device when update fails", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > should remove the room from the store on unmount", + "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with plain text description", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string with weekday if date is within last 6 days", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room with no parent spaces or members when changing join rule to knock", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should setup e2e when server supports cross signing", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone XS Max; iOS 15.2; Scale/3.00)", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should contain the last recently accessed items", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept :NUM (port specifier)", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with only lat and lon", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > resetConfirm should work with a cached account password", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match advanced ctrlOrMeta key combo", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMembers > should update on RoomState.Members events", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > adds a toast to an empty store", "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is no event, it should not send any receipt", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > logs error and resets state when updating guest access fails", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can close the bug reporter", - "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when props get changed", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should show a dialog", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should generate a thumbnail if one isn't included for animated media", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > unignores the user", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > does not render dropdown when no devices exist for type", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room settings on button click", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave()", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > encrypt > should round-trip", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders email mismatch message when invite email mxid doesnt match", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning resolves", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return true for Room", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is any other error, it should not report ready, displayname = MXID and avatar = null", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backslashes", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event to the widget if seen already", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should throw when no clientId in localStorage", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should place calls using managed hybrid widget if enabled", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > no-ops if there are no state events", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct > 1", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should create a new object", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > cancel button clears selection", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should work", - "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a ModuleSpinner", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on enter keydown", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when called with an empty array, it should return false", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > clears previous error and emits when stopping beacon works on retry", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the recovery method removed dialog", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > should link to predecessor room via MSC3946 if enabled", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > renders create space button when UIComponent.CreateSpaces component should be shown", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > updates the video room space when the room type changes", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards beacon location as a pin drop event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when a command is followed by other text", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind an email address", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show error view if failed to look up room alias", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > should resolve the promise after invoking the callback", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should render pin button", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should fallback to stored issuer when no client well known is available", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > and setting MessageComposerInput.showStickersButton to false > shouldnot display the button", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token in localStorage when idb fails to save token", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > suggests connecting session to key backup when backup exists", - "test/unit-tests/theme-test.ts::theme > getOrderedThemes > should return a list of themes in the correct order", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should lookup .well-known for homeserver without protocol", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the overlay timeline window", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (input pos)", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should not display the section when the user can not set the value", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two third-party invites", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames current session", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > navigates to location picker when live share is enabled in settings store", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders only enable notifications switch when notifications are disabled", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should change the layout when selected", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > initiates map with geolocation", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > shows chat effects on message sending", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to approve a request", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS are preloaded", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > renders dropdowns for input devices", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not add relations for a .messages or .effects category command if there is no relation to add", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > should return false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with plain text content", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if that is selected", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Verified", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should be enabled if config is set", - "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotConfigured", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should set logged in and start MatrixClient", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a live beacon that does not have a location", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known default for encryption setting", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a newline work", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when backup creation failed", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when cross signing is not ready", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct label", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing mention of said user", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain about weak passphrases", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open topic dialog when not clicking a link", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > submits location", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Shows indent and unindent buttons when either a single list type is 'reversed'", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when minimized", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > contentLength should return the buffer length", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status not_sent", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders spinner while device is loading", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles guest users", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing in middle of non-editable part appends", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should clear input on cancel", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users with a custom limit", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > does not display advanced section toggle when join rule is not public", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for Element Desktop", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw if scalar_token is missing in response", + "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been denied", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > renders world readable option when room is encrypted and history is already set to world readable", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept hyphens in name @foo-bar:server.com", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single Continue button if OIDC MSC3824 compatibility is given by server", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns the latest location event for a live beacon with location", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the blacklist of unverified devices settings", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches ignoring accents", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on past poll list item click", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid passphrase", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > does not honour m.space.parent if sender does not have permission in parent space", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is defined", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors is enabled > passes the flag through to getVisibleRooms", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room added", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should unfavourite a room", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > updates thread previews", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > plaintext remains plaintext even when forcing html", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should handle local echos correctly", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a room has unreads", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a non-resize event occurred in UIStore > should still display the sticker picker", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > on should forward the call to VoiceRecording", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should not attempt registration when oidc native flow setting is disabled", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a number enum", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Appends a room when you join", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active recently if no activity", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > favourites space does contain favourites even if they are also shown in a space", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should render", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbblacklistUnverifiedDevices\u00ab", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows emoting with non-text parts", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > clears all notifications", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > updates guest access on toggle", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with some candidate servers", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > connect to call with ongoing session", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready true", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with react node", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts room notification type", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is ended if there is an end event", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > hides if there's no content", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering different passwords > should show an info about that", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should call onError if setting visibility fails", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should not be enabled without config being set", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders reject and ignore action buttons when handler is provided", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > stops listening to account data events on unmount", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show oidc-aware flow for oidc-enabled homeserver when oidc native flow setting is disabled", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with react node and translates with fallback locale", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > button to accept terms is disabled if checkbox not checked", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Audio", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > displays rooms with nsfw keywords in results when showNsfwPublicRooms is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > toggles timeline in right panel on click", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQsFromFragment", "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > reciprocates login", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist credentials", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is not 1 and translates with fallback locale", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested quotes", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > downloadFile > should download a file and return the blob", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should return empty array when the request is not possible", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns false when setting value is not true", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should be the default", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address and port", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return true for Room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > should return true from canSelfUpdate()", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are not granted", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar for an empty playback > should render correctly", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return true when force_disable property is true", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns undefined for an unknown setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > dms are only added to Notification States for only the People Space", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > returns false when no threads", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return true for Room", + "test/unit-tests/editor/position-test.ts::editor/position > move forwards within one part", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > distinguishes widgets with the same ID in different rooms", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > prefers size stashed in LocalStorage to the defaultSize prop", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should switch rooms when edit is clicked on a search result for a different room", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room file panel on button click", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for a non-object", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a known user not in the room", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include attachments", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > listens for incoming call events when voip is enabled", + "test/unit-tests/editor/history-test.ts::editor/history > not every keystroke stores a history step", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be disabled", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last month", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > remains connected if we stay in the room", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends unthreaded receipt requests", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > integration > should translate strings using translation system", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FT:h", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/foo-bar:server.uk", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for Room", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to resource limit", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > @room pill turns message into html", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should display custom theme", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows edit button when we can edit", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling on", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 and 2 > should render both contents", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should show a dialog", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to collapse a reason", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing when clearing if flag is false", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns hour format for events created in the same day", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I have not voted", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > only creates a single history entry if given the same card twice", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to destroy pickle key", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A single instance starts up normally", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should not mangle default order after filtering", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to min", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show reply button when we cannot reply", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > wysiwyg correctly persists state to and from localStorage", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for pinnable event types", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > should filter the content", + "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders with children", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders maps unavailable error for a live beacon with location", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when userTimezonePublish is enabled", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (with plain text around)", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with empty content body", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for space -> all transition", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status invalid-status", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu without unpin and delete", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > cancels my local vote if another comes in", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should not find a room for an unknown Id", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with 3 coords", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.lowpriority=", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should fall back to /download/ if /thumbnail/ fails", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > emote", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys if available", + "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should seed the array with the given value", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should return empty string if passed falsey", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the last message when the pinned event array changed", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not render if not wrapped in room context", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls invite on approve", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows non-radio buttons if the poll is ended", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not have after create callbacks", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders without icon", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is not 1 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > should report to analytics on resize stop", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to for multiline links", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show spinner whilst loading", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h2 with correct attributes" + ], + "pass_to_fail": [], + "pass_to_skipped": [], + "fail_to_pass": [ + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > renders", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > correctly handles the loading/disabled state", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when all devices are selected", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of undefined", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when no devices are selected", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of \"this is a byline\"", + "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should list spaces which are not parents of the room", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings with guest spa url", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings without guest spa url", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create just-me space [Chrome]", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders unselected device tile with checkbox", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > matches the snapshot", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > keywords", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > goes to filtered list from security recommendations", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders selected tile", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu in wide mode", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders export dialog" + ], + "fail_to_fail": [ + "test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx:: > renders security section", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > handles remote disconnection and reconnect right after", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should update when key backup status event is fired", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show the empty state when there are no pins", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should not render the RoomListSearch component when UIComponent.FilterContainer is at false", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > should render a deactivate button for users of the same server if we are a server admin", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (DISALLOWED_APP)", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > checkSupport > shorts out if the server has 'native' sliding sync support", + "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > renders empty state", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when connection state changes", + "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should reset the encryption when the continue button is clicked", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (undefined)", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a subscription for the room", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verify button", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should support changing font size by using the font size dropdown [Chrome]", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should render manage integrations sections", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_BAD_VERSION)", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when the active space is not MetaSpace.Home", + "settings/quick-settings-menu.spec.ts::settings/quick-settings-menu.spec.ts > Quick settings menu > should be rendered properly [Chrome]", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should not display the space menu", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should not display the timeline when the room encryption is loading", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display the dial button when the PTSN protocol is not supported", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should not download image", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > should show a policy link when provided", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > ThreePidInviteTileView > renders ThreePidInvite correctly", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should support enabling system font [Chrome]", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > waits if the room is not yet known", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_UNEXPECTED_RECOVERY_KEY)", + "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite when room in not available", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > retrys event on retry click", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > subscribes to the room", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > has button to edit topic", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > should match the snapshot", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room summary", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when UIComponent.ExploreRooms is disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room topic in the summary", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state CREATING should match the snapshot", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (CUSTOM_ERROR_TYPE)", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can submit a bug report", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > requests in expanding batchSizes", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should render the RoomListSearch component when UIComponent.FilterContainer is at true", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display search and explore buttons", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > unsends event on cancel click", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display the compose menu", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should render spaces view [Chrome]", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verified badge when user is verified", + "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to add an existing room to a space after creation [Chrome]", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > should render joined video room view", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the reset identity panel when the user clicks on the reset cryptographic identity panel", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verification unavailable message", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display the space menu", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when connection state changes", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should not open app after cancelling device verify if unskippable verification is on", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a custom subscription for a lazy-loadable room", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > renders ", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should be rendered properly [Chrome]", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should render", + "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should display the 'forgot recovery key' variant correctly", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > handles accounts with zero rooms", + "test/unit-tests/vector/init-test.ts::showIncompatibleBrowser > should match snapshot", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should render subspaces in the space panel only when expanded [Chrome]", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > should match the snapshot", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render empty state", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should render hidden image placeholder", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should not display the compose menu", + "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > that is encrypted > should match the snapshot", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > doesn't get stuck in a loop if you view rooms quickly", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create private space [Chrome]", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > does not show the face pile for DMs", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_CUSTOM_REASON)", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should show the complete security screen if unskippable verification is enabled" + ], + "fail_to_skipped": [], + "skipped_to_pass": [], + "skipped_to_fail": [], + "skipped_to_skipped": [ + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > user pills", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 as the domain name", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should decrypt a range of inputs", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > redaction > updates component on before redaction event", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs without newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested mixed lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > backslashes", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list where everything is 1", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > adds a new room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list directly preceded by text", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block surrounded by text", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text and no newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested unordered lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links without trailing slashes", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested ordered lists", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > removes a room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations with trailing and leading whitespace", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block followed by newlines", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list directly preceded by text", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > underscores within a word", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 as the domain name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines with trailing and leading whitespace", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations without separating newlines" + ], + "none_to_pass": [], + "none_to_fail": [], + "none_to_skipped": [], + "pass_to_none": [], + "fail_to_none": [], + "skipped_to_none": [], + "new_tests": [], + "removed_tests": [] + }, + "stable_classification": { + "pass_to_pass": [ + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders invalid date separator correctly", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM LocalRoom > should render the expected intro", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > getUserIdsFromCompletions() should map completions to user id's", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes square brackets", + "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking the dial button calls the correct function", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver doesn't offer any supported login flows", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > and some 3rd-party members have a profile > should resolve the profiles", + "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > doesn't error when viewing redacted encrypted messages", + "test/unit-tests/createRoom-test.ts::createRoom > doesn't create calls in non-video-rooms", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when user is has invite rights for space", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is expired but live property is true", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display a connection error when getting login flows fails", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and a room is viewed > and the quick settings are open > should render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time is up > should not call stop", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if installed WPA", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > warns when trying to make an encrypted room public", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after component is loaded", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/foo_bar:server.uk", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > refreshes devices after verifying other device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a mention without a href closes the autocomplete but does not insert a mention", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if all users have a device", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Exact match in recently used takes the lead", + "test/unit-tests/components/views/messages/JumpToDatePicker-test.tsx::JumpToDatePicker > renders the date picker correctly", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_cancelled", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not display a redacted edit", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Even", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > OIDC Aware > should resolve account management endpoint", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should allow overriding individual fields of sub-objects", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns success if notification level is Notification", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > renders stop button", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are granted", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse loud keyword notifications", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if a room exists > should return the room and dispatch a view room event", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders inactive devices section when user has inactive devices", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > sets position on click event", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestCreation() > sorts beacons by descending creation time", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > should link to predecessor room via MSC3946 if enabled", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client with a tokenRefreshFunction", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should not prompt the user if the requested key is not the default", + "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return true for 1-1 rooms when widget_build_url_ignore_dm is unset", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing phone number", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders close button correctly when encryption panel with a pending verification request", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should handle no email addresses", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should allow rearranging via drag and drop", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should add link to next and previous file", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames current session", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > cancelUpload > should cancel in-flight upload", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should react to value and disabled prop changes", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button click", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > removes spinner when device fetch fails", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing enter selects the mention and inserts it into the composer as a link", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll create event when submitted", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking without a drag motion, it should pass the click to children", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should show call buttons in a room with 2 members", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > hides the push notification section when no pusher", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores trailing `:`", - "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an unknown room > should not update the account data", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the right > should return a position to the right", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if focusRoomSearch=true", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > shows the 'set up recovery' toast if user has not set up 4S", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons in reverse order when room can previewed", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct labels for banned and unbanned members", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with the expected arguments when text node is valid command", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room with read thread messages", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with multiple winners", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns live beacons when user has live beacons", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 144 hours ago", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should show space invites at the top of the space panel [Chrome]", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon is not live", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > uses shared as default history visibility when no state event found", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > deletes devices and calls onFinished when interactive auth is not required", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom out on zoom out click", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a regular notification in the TAC", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > does not render a poll tile when end event is invalid", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return J-D in narrow mode", + "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should batch promises into groups of a given size", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns an empty string if we are not handling a user, room or at-room type", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when not recording > and there is an audio update and time left > should not call stop", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is not known", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered doesn't incorrectly override setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in home space", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the extensible event text when fetching the start event fails", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when general config rejects", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for redacted event", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should leave room and dispatch after leave action", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns map of users to rooms with 2 members", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for LocalRoom", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should attempt token login", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a User should start a DM", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when calls to client.getRoom and room.getEventReadUpTo are non-null, shows read receipt button", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for regular InputEvent", + "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > should show poster for encrypted media before downloading it", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should return usage if no args", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onChange handler", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases with no server component", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > should replace parameters in widget url template", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects muted", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows an out-of-sync toast when one of the secrets is missing", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds no calls", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from a selected room", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and feature_dynamic_room_predecessors is enabled > should pass the setting to findPredecessor", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without content body property", + "test/unit-tests/editor/parts-test.ts::editor/parts > should not explode on room pills for unknown rooms", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button emojis correctly", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should do post-logout cleanup", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should start OIDC login flow as registration on button click", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go straight to logged in view when user is not in any encrypted rooms", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 6 days ago, but less than 144h", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for GB", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should render", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse regular keyword notifications", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > catches error and logs when saving client information fails", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > spoilers get injected properly into the DOM", "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status cancelled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally false", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed, added, and removed properties", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::getPowerLevels > returns an empty object when room.currentState.getStateEvents return null", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles rules with no conditions", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when error is ERROR_INVALID_HOMESERVER", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders loading state", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.invite=", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > runs the function passed in", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with no args", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is in secret storage", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK/SSK not cached", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders something if member.membership is 'invite' or 'join'", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return false for LocalRoom", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string does not exists at all and translates with fallback locale, attributes fallback locale", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects if the widget dies", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.archived=", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show view in room button when the event is not a thread root", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready false", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects a missed call", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > does not delete a device when interactive auth is not required", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option with selectedLabel", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders without description", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for an audio message event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:com (mostly for (TLD|DOMAIN)+ mixing)", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for image files", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes that arrived after an unauthorised poll end event", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 2 days ago", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 12 hour mode", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.canonical_alias", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > hides when group calls disabled", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > defaults to moderator for joining calls", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 144 hours ago", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor in the create event, it should count predecessor highlight", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after sync stops", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if not wrapped in a client context", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks containing markdown", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a matrix client context", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > should show the password input view", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for orphans -> all transition", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for space -> all transition", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows placeholder info if the call isn't loaded yet", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates multiple sequences of repetitions with other events between", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by notification state then alpha", - "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders without children", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room with a pending third-party invite", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (without plain text around)", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to a message in the same room with the label \u00bbMessage from Member\u00ab", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > downloadFile > should download a file and return the blob", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_already_exists", + "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 24 hour mode", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow pasting the same user multiple times", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not render space header", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows scores if the poll is undisclosed but ended", + "test/unit-tests/models/Call-test.ts::ElementCall > get > does not pass analyticsID if `pseudonymousAnalyticsOptIn` set to false", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > should render as expected for a DM room with a single third-party invite", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > does not re-sort on possible mute change when room did not change effective mutedness", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores trailing `:`", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > handles saving beacon event id when local storage has bad value", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for the given relation", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > font show ask to join if feature is enabled but cannot invite", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for around pills", + "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > when a dialog is opened, the release announcement should not be displayed", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns a single empty div if room.getMember is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in an empty composer", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist access token when idb is not available", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers explicitly denied by ACLs", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load without initialFocusedBeacon", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends plaintext messages correctly", + "test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx:: > renders tab", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 0", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > invokes room activity listeners when the viewed room changes", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should return null", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand normal notifications", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room member", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > does nothing on non space/enter key presses when no onKeydown/onKeyUp handlers provided", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isNew should return true", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound phone number", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3600 to 1h 0m 0s left", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should recover from a server exception", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > records error when stopping beacon event fails to send", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error when beacons have stopping and location errors", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were unpinned", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is enabled > should render the developer tools option", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > asks for confirmation before deleting a backup", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple variable substitution and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is not the latest beacon for a user", + "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when animated", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should highlight words correctly", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show username field with autocaps disabled", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting all items should work", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > signs out of all other devices from other sessions context menu", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description at first", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound email address", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added from A->B", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from experimental-extensions provided by a registered module", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should destroy pickle key", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > room pill", + "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return S-S in narrow mode", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sent", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if beta is disabled", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > creates and adds recording to state", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: Threads > should display the pinned message badge", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = true", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > rejects invite on secondary button click", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 1", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a heading", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationBodyEnabled setting is truthy", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > triggers a room update when room mutes have changed", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when user has no permission", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > catches errors when room is not found", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return the next feature when the next release announcement is called", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the room's avatar", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should close search results when edit is clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onSelect on checkbox click", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string with duplicate character", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the sticker picker", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji varitation replacement", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates live timeline when a timeline reset happens", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > allows overriding native context menus", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > works for escaping backticks in between texts", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > delete() should not raise an error", + "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should wait for the current batch to finish to request the next one", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches all chars with words-only off", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected style attributes when avatar url matches default", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near bottom edge of window", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toRightOf > should return the correct positioning", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > clears widget persistence when destroyed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page", + "test/unit-tests/components/views/rooms/AppsDrawer-test.tsx::AppsDrawer > honours default_widget_container_height", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with backspace", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with the selected source when share clicked", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an VideoBody", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add space button when UIComponent customisation allows CreateSpace", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when calculatedValue is falsy", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes feature_allow_screen_share_only_mode setting to allowVoipWithNoMedia url param", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without msgtype", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should set join rule to public defaultPublic is truthy", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from users who change identities after verification", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_not_signed_in", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a verified device", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with a replace relation", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should display user profile when searching", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isError should return false", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders null when no devices", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should correctly handle getUserDeviceInfo() returning an empty map", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > should display the button", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > getAppVersion returns normalized app version", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders enabled invite button when current user is a member and has rights to invite", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > destroys beacons", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return the app avatar URL", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When emoticons should be replaced by emojis > typing a space to trigger an emoji replacement", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills get injected correctly into the DOM", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > does not display live location share option when composer has a relation", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested ordered lists", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with knock join rules", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.file event type", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should not parse @foo without domain", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with fixed predecessor", + "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the sender and question for a poll created by someone else", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > handles remote disconnection", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the setting is in a loading state", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should throw error if unregistering unknown token", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > does not parse room alias with too many separators", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > does not render back button on share type screen", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > renders in error mode when displayStatus is error", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display all the buttons when the space menu is opened", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > updates selected duration", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are removed", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element video room", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > creates a modal on openDesktopCapturerSourcePicker", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > should return true from canSelfUpdate()", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length > B length", + "test/unit-tests/editor/position-test.ts::editor/position > move forwards crossing to other part", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should not call notifyTimelineHeightChanged() for a different context", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > contentType should return the VoiceRecording value", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should emit onChange calls", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when room is tombstoned", + "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room in an intentional mentions world", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live but has a latestLocation", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should ask the user to enter the recovery key", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide cryptoSetup extension", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > should syntax highlight code blocks", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > does not change parent hook state if suggestion is null", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> orphans transition", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create public space [Chrome]", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound url if no name", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > registers clicks", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should return the profile", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room has only one joined member", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase typed in", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device id as fallback when device has no display name", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > does nothing if given no room ID and not viewing a room", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > strips plaintext replies", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send rust cryptoSDK superProperty correctly", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in German without item limit", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key undefined", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for an MXID permalink", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with RovingTabIndexWrapper", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with notifications tab selected", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds ongoing calls that are created by the session manager", "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > decodes audio data when not greater than 5mb", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a regular notification in the TAC", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > deduplicates diff steps", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders spinner while devices load", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor when reinitialised", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > removes personal information from static self location shares", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when UIComponent customisations disable room options", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length > B length", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should handle unknown user agent sanely", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should edit a simple message", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element description", - "test/unit-tests/editor/position-test.ts::editor/position > move first position backward in empty model", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when not expanded", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with stable m.location msgtype", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should not prepend https to input if it has it", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > should not report a status event if no changes", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should not choose a high-contrast theme if not available", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by name", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > always shows share user button and clicking it should produce a ShareDialog", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > does not update the timezone when userTimezonePublish is off", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should expand arrays", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have contentEditable at false when disabled", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides counter for muted rooms", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > room mentions", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message when there are no active polls in the room", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add room button when UIComponent customisation allows CreateRoom", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders success screen when export is finished", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is disabled > should not have the option to create a knock room", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > handles the happy path", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should look up userId using access token", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders QR code", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send Legacy cryptoSDK superProperty correctly", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > should send the new password and show the click validation link dialog", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map setup throws", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > by default adds Twemoji font", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > tracks participants in room state", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should initialise the rust crypto library by default", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can auto-join a room", - "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders marker correctly for self share", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders invalid_code", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useMyRoomMembership > should update on RoomState.Members events", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event that is not room message", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = false, DM = true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not add relations for a .messages or .effects category command if there is no relation to add", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as status if valid", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show password and confirm password fields in separate rows", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should move if there is a room", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should ignore home shortcut if dialogs are open", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > removes a room avatar", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the spinner when creating backup", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > refocuses on same beacon when clicking list item again", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in the room > should render as expected", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test broken mentions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip single / from message prefixed with //", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have disabled class when disabled", + "test/unit-tests/settings/controllers/AnalyticsController-test.ts::AnalyticsController > Tracks a Posthog interaction on change", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > highlights when message's push actions have a highlight tweak", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > renders the date separator correctly", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return expected results when all response times similar", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute modifications", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders own and live location options", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and confirm the email link and submitting the new password > should send the new password (once)", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Dart/2.18 (dart:io)", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999 as 100K", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > checks whether form submit works as intended", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", + "test/unit-tests/utils/exportUtils/JSONExport-test.ts::JSONExport > should have a Matrix-branded destination file name", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > no mentions", + "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should remove all pinned events when clicked on Continue", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > hyperlink", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing an opening square bracket work", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return true", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display a placeholder", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of a known screen", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Odd", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding email", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when participants change", + "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > supports events with missing timestamps", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking with a drag motion above the threshold of 5px, it should not pass the click to children", + "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > renders", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > suggests connecting session to key backup when backup exists", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > dispatches reply event on click", + "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an unknown room > should not update the account data", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu (except voice messages) in narrow mode", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when feature is disabled", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > displays message when room cannot federate", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens invite dialog on button click", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should use permalink_prefix for permalinks", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render message count input", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all inactive devices button works", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > renders options menu", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > enables play button when playback is finished decoding", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without room ID > should raise an error", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is disabled", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > renders an ended poll", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders the date separator correctly", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > keeps same tab active when order of tabs changes", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > and a new event appears > should emit the new event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace at-room mentions with `@room` in body", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery out of sync panel when secrets are not cached", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > when an error occurs while setting an item the cache should be cleard", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > disables Element calls", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the poll topic on mount", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: ThreadsList > shows an unread notification badge", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > renders button with an unread marker when room is unread", + "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is bridging messages", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was reported before a logout/login cycle", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should prepend https to input if it lacks it", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return true for items in the caceh", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when some secrets are not in 4S", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add and remove mentions from the edit", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should support pasting one username that is not a mx id or email", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should ask if user wants to unban user if they have permission", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom selection element when renderSelection() is defined", "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > shows a face pile for rooms", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy and altitude", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not call for suggestions with a null suggestion prop", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when WebGl is not enabled", - "test/unit-tests/editor/range-test.ts::editor/range > range replace across parts", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> space transition", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 3 > renders a paragraph with three names", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders collapsed events if events.length = props.threshold", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should open settings to the reset flow when 'forgot recovery key' clicked", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > contentType should return the VoiceRecording value", - "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sunday-Saturday in long mode", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should support custom clone functions", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > Should migrate existing login", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists to session history upon sending", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > is forcibly enabled", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty body should return null", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > translates a basic string and translates with fallback locale, attributes fallback locale", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct button when value is provided", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns a non-200 status", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should set and return container height", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > can return a single empty div in case where room.getMember is not falsy", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light-high-contrast theme if that is selected", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content without error style when map_style_url is not configured", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 0 and translates with fallback locale", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should order the room with the same notification level by most recent", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return true if all conditions are met", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of last line", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no left space", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > closes and displays error when geolocation errors", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should enable theme selection when system theme is disabled", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at start of string", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > renders event index information", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Jitsi video room invites", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with multiple threads", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected attributes when avatar url is not default", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the last item should work", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns false", + "test/unit-tests/editor/position-test.ts::editor/position > move first position backward in empty model", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders an error message", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > displays fallback text when the poll end event does not have text", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > renders expected fields", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > separates metadata with a dot", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with custom options", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with args", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles text in tags and translates with fallback locale", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > clicking toggle calls onDeviceExpandToggle", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should clear text field and suggestions when a suggestion is accepted", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should be able to handle an empty result", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom(), sets promptAskToJoin state to false and shows an error dialog", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be ok if MigrationState greater than `NOT_STARTED`", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if setting true and existing event is true", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button on non-actionable event", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders static remaining time when displayLiveTimeRemaining is falsy", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string exists but not for for count and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a mobile device type", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is ignored by default", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server forces enabled encryption", + "test/unit-tests/utils/threepids-test.ts::threepids > lookupThreePids > should return an empty list for an empty list", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns forced value when setting is incompatible", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the overflowing case correctly", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known force_disable for encryption setting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onChange handler", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send cryptoSDK superProperty when enabling analytics", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should pass through to the handler if setting is not disabled", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of unreads", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > shows set up recovery toast when user has a key backup available", + "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly with an opened room", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return Jan-Dec in short mode", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > opens encryption setup dialog when verifiying current session", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders stopped state", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects call type", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > backslashes", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.notice correctly", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > emits filter changed event when updateSpace is called even without changes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with args", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window to get enough overlay events", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly migrates old settings to the new model", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > ignores node", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for unknown error", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with day of week and time when last activity is less than 6 days ago", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct buttons when definitions have checked prop", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > returns an empty map for completion types other than room, user or at-room", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when new version of message's push actions have a highlight tweak", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Room rendering context", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are joined", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > should render welcome page after login", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with dots in name", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing backslash", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when ctrl+enter is pressed when ctrlEnterToSend is true on windows", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a top-level space that was being viewed", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > refreshes beacon liveness monitors when pagevisibilty changes to visible", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns false when platform does not support notifications", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f emoji", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are unpinned", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should remove the link", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > does not show a dot if the level is activity and hideIfDot is true", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > clicking cancel button from location picker closes dialog", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when encryption by default is disabled > should allow to invite more than one email to a DM", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should not display the recovery panel when key storage is not enabled", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a list of active polls when there are polls in the room", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for multiple paragraph", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > opens maximised map view on click when beacon has a live location", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _tDom", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for own event", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores trailing `:`", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders only some buttons in narrow mode", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when expanded", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested lists", "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > updates history visibility", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint when configured", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to resource limit", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > when switching rooms in the all rooms home space don't switch to related space", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is a not a number", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > does not format pure white space", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll end events from a ended poll detail", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders without a beacon instance", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (explicit)", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders marker when beacon has location", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a known user not in the room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready without showing update when user registered in last 24", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > filters out non-room specific rules", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is defined", - "test/unit-tests/editor/range-test.ts::editor/range > range trim just whitespace", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests fully", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for Room", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_USER_DEACTIVATED", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes square brackets", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > opens message context menu on click", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds no calls", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > should return the value \"platform\".\"Electron.showTrayIcon\"", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should work when resolveThreePids raises an error", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when user does not have cross signing keys and server does not support cross signing", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > sends correct state event on click", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device with metadata", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Jitsi video room invites", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > sort emojis by shortcode and size", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > closes on close button click", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to consent", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > renders expected fields", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > retry button resets location publish error", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > should render as expected", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=busy", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > updates the UI when another session changes the local notifications", - "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for more users if percentage grows", - "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > defaults target and rel", - "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > opens modal on click", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > spoilers get injected properly into the DOM", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > clears loading state when device deletion is cancelled during interactive auth", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Zero altitude is not unknown", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks visible vs. not visible events", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is same day as current day", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given an invalid state", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Unverified", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > watches device client information setting", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders both cards when user has both unverified and inactive devices", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows a modal before ignoring the user", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing phone numbers", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > clears previous error and emits when stopping beacon works on retry", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders invite message when invite email mxid match", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Even", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > calls on beacon click", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should pass via of the server being explored when joining room from directory", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up for an audio message", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 3 when notificationCountType is 3", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to deny a request", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in rooms larger than 2 members", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > displays alert if an identity server needs terms accepting", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup version", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string exists but not for for count", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use 'You' for your own reactions", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays name edit form on rename button click", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons by descending expiry time", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows adding keywords", + "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should match the snapshot", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not render size limit input when set in ForceRoomExportParameters", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > appends the phase to any phases that were there before", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should display a notification for a voice message", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets message count on change", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > flush > should clear profiles, known profiles and errors", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain about weak passphrases", + "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should group appropriately", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the overlay timeline", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created in the current year", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with surrounding text", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays a loader while checking keybackup", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > catches an error from localstorage", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knock has been denied", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'set up recovery' toast", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > does not call onClick handler when clicking share button", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > should return false", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should return empty string if passed falsey", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have hover style when hovered and reversed", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an empty and non-empty array", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when cmd+enter is pressed when ctrlEnterToSend is true on mac", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > includes threads", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > should show all activated MetaSpaces in the correct order", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an Error is raised > should log the error and show the \u00bbNo media permissions\u00ab modal", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a timeline update", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > Should migrate existing login", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when light theme is selected", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not installed WPA", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should default to name 'Attachment' if file doesn't have a name", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in public room", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders plain text children", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders other errors", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted and later becomes visible", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the text fallback when fetching the start event fails", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens parent thread for a thread reply message", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block followed by text after a blank line", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > updates on event decryption", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when a command is followed by other text", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show set room layout button", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not installed > renders link to install seshat", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (other widget)", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > markdown-like symbols", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling off", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for home -> space transition", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set for unknown users", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have been offline for too long", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - AppleTV11,1/11.1", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > room pill uses matrix.to", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = false > should invite all users", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > invoke > should invoke to every registered module", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without an issuer in session storage", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 1", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record high-quality audio if voice processing is disabled", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > does not render unverified devices section when only the current device is unverified", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does not emit BeaconUpdateError when stopping succeeds and beacon did not have errors", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message when kicked", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback for a non-local room", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > should add new DM Invites to the People Space Notification State", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates if there are unsent messages", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows search box when there's more than 20 members", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (via default)", "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then sends it anyway", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user info", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > should show the expected texts", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should handle multiple parameters", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when there are no beacons", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders join button", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should launch a confirmation modal", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply to room mention", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > without filter", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if VoIP isn't supported", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and clicking \u00bbSign out of all devices\u00ab and \u00bbReset password\u00ab > should show the sign out warning dialog", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > does not render export format when set in ForceRoomExportParameters", - "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the question for a poll I created", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > renders world readable option when room is encrypted and history is already set to world readable", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not open the tooltip when hovering a link", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is rejected", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are missing", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider provides a ref to the dom element", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > updates component on decrypted event", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayNoTime > should return a date formatted for en-GB locale", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > handles the bot notice inversion correctly", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not render any own beacon status when user is not live sharing", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should store clientId and issuer in session storage", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > asks users to confirm when setting room to encrypted", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls invite on approve", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > allows forwarding a live beacon that has a location", - "test/unit-tests/favicon-test.ts::Favicon > should recreate link element for firefox and opera", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > closes and displays error when geolocation errors", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > does not set an initial screen in session storage", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should disconnect all calls", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails with permission error", - "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > opens the room inviter", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rerendering PiP content 1 > should not change the PiP content", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > activates the space on click", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is no room predecessor, getHiddenHighlightCount should return 0", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > and a room encryption state event > should return true", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should display an error when trying to continue with an empty homeserver field", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > inserts toast according to priority", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should keep RoomUpload's total and loaded values up to date", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > resets seshat", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders info from a previous event", - "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > uses the provided language", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when identity changes", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single Continue button if OIDC MSC3824 compatibility is given by server", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should cancel the dialog from within the dialog", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is falsy", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > custom user agent = Element Desktop: Unknown", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > on liveness change > renders stopped UI when a beacon stops being live", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > does not force a reload on sync unless the client is coming back online", - "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should return the current width of window, according to UIStore", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > including rooms", - "test/unit-tests/components/views/elements/RoomFacePile-test.tsx:: > renders", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > emit should forward the call to VoiceRecording", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with no args", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > does nothing on click if already active", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return the right result for known users", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > cancelling edit switches back to original display", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with inactive notice when last activity was more than 90 days ago", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > renders input with default value of false", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should show error modal when the verification request is cancelled with a mismatch", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for a visible event", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Incomplete if backup key not cached locally", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should not prepend https to input if it has it", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in one of the feature groups are supported", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should close when selecting default homeserver and clicking continue", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > fires favourite dispatch on button click", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a room alias", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is no longer in that space", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > oidcClientStore should raise an error without a client", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should return the custom config", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event that is not in timeline but relates to unknown parent to the widget", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.hangup", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > throws when room is not found", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an unknown message in the same room with the label \u00bbMessage\u00ab", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the instance was forgotten", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when show_labs_settings is enabled in config", "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > does not render Add Space when user does not have permission to add spaces", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active after 10s of no activity", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > stops listening to account data events on unmount", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when crypto is not enabled", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should show loaders while 3pids load", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > does not truncate a reason unnecessarily", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should fail to retry once complete", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should disable theme selection when system theme is enabled", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return undefined when no token in localStorage", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev user mentions", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without msgtype", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not leave/ban", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event with thread info", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > is hidden when no notifications exist", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when supported", + "test/unit-tests/favicon-test.ts::Favicon > should recreate link element for firefox and opera", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > does nothing if the room has no phase to open to", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > when called with an empty array, it should return an empty array", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to knock", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 23h formats to 23h", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for redacted poll start", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if touchInput", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > deduplicates diff steps", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver fails liveliness check", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles non-html input", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > doesn't change KEYBOARD_SHORTCUTS when getting shortcuts", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > no mentions", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at start of string", + "test/unit-tests/components/views/messages/DownloadActionButton-test.tsx::DownloadActionButton > should show error if media API returns one", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.2 Explicit CRS and accuracy", + "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for non-reply events", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > shows an error dialog with a generic error message", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: Linux", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user _is_ banned", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return true when room is a public space", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when alt+Enter is pressed", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"The sender has blocked you from receiving this message\"", + "test/unit-tests/utils/objects-test.ts::objects > objectClone > should deep clone an object", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should change the copy button text when clicked", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does geolocation and sends location immediately when user has live beacons", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown users", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display an error message when the room is unreachable via the roomId", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing by default", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with security tab selected", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when clicking start a voice message > should try to start a voice message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Enabled if backup key is cached locally", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > renders in german", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when not minimized", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the room is not a DM", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > replaces toasts by key without changing order", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally true", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return false when we have a receipt for the thread", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders without children", + "test/unit-tests/stores/room-list/algorithms/Algorithm-test.ts::Algorithm > sticks rooms with calls to the top when they're connected", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@alice:example.com\u00ab should return false", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > shows group call toast", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a space room", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with multiple previously pinned messages", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic to HTML", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a space", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove an email address", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time & date string without year if it is within the same year", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is unexpired", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon without a location correctly", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on enter keydown", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user has no push rules event in account data", "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is # or @", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should return config from config.json", - "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand missing highlight.value", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on own actionable event", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto and new version", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > hasRecording should return true", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates an existing list based on the key", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases with no server component", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the main timeline", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale pt", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should unpin the event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > has room info icon that opens the room info panel", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > updates include attachments on change", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Does not remove old room if there is no predecessor in the create event", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when one of the predicate return true", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames ending in a backslash work", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have focus", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > renders location icon", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should omit attachments", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user active after activity if no window focus", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation permissions are not granted", "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should dismiss toast when 'not now' button clicked", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite more than one email to a DM", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends several events when I click different options", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should make things rainbowy", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > remains connected if we stay in the room", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room ID", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = false", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with public join rules", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call event is redacted", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return true for Room", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for beacon locations", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of highlights", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are available", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > clears loading state when device deletion is cancelled during interactive auth", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > connect to call with ongoing session", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > clears filter from no results message", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 3 when notificationCountType is 3", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > spoiler", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows sending double-slash escaped slash commands correctly", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should reuse the result", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect modernizer", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog when crypto is disabled", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should not camelCase a trailing or leading underscore", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the thread panel", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if no thread in the room has notifications", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with a soft-logged-out session > should show the soft-logout page", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly handles audible keywords without mentions settings", + "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > opens modal on click", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons do not change live state", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > sends correct state event on click", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to deny a request", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders join and reject action buttons correctly", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Samsung SM-G960F; Android 6.0.1; RKQ1.200826.002; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds the top answer among several votes", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for non-video mimetype", + "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should match snapshot", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no force_disable property", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > rechecks theme when setting theme fails", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs including formatting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should display the link in editing", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should not has placeholder", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders central word changes", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute deletions", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should render spinner while app is loading", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when a message has been entered > should render the send button", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle serverConfig updates correctly", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > clears highlight message in the room view store", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is same day as current day", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when it is dismissed", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > spaces contain dms which you have with members of that space", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > updates marker position on change", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if there is no matrix client", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on main tile click", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is not enabled > Passes the dynamic predecessor flag to getVisibleRooms", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if not wrapped in a client context", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Notification rendering context", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.favourite=", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to the loudest synced rule value", + "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false if widget_build_url is unset", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > shows the autocomplete when text has @ prefix and autoselects the first item", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should copy the layout to the room", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event if not in timeline", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and the server liveness check fails > should show the server error", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a cross-user verification", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should not show error modal when the verification request is changed for some other reason", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Unknown param", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > can change joining calls power level", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should be predictable with double underscores", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > handles errors fetching session key", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type ThreadsList dispatches show_thread", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should favourite a room", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with an unread message in a thread", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates desktop notification when enabled", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the left > should return a position to the left", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot approve", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders with children", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > Should display \"Unable to decrypt message\"", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room that is ready after a while > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > dispatches view settings action on preferences event", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving more right when all is undefined", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > hides the push notification section when no pusher", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon is not live", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render not display the tooltip when the release announcement is displayed", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should have an SDK-branded destination file name", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with two winning answers", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show widget as pinned", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns false for space", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to an event in another room with the label \u00bbMessage in Room 2\u00ab", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with valid data > getRoomIds should return the new room Ids", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > encrypt > should round-trip", + "test/unit-tests/components/views/messages/shared/MediaProcessingError-test.tsx:: > renders", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load with an initially focused beacon", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders an error message", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > renders in error mode", + "test/unit-tests/editor/range-test.ts::editor/range > range replace across parts", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > ok to omit the substitution variables and cause object, there just won't be any cause", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no support in crypto", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can call when you're two in the room", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with a custom title and default options", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not prompt ask to join", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display label as placeholder", + "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders map correctly", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should block Ctrl/CMD + k shortcut", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is displayed with the setting enabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is in the current space", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > removes client information on start if it exists", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test room mention", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should update when the e2e status when the user verification changed", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a non-standard pickle key > should create and start new matrix client with credentials", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should display an error if setup has failed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should store clientId and issuer in session storage", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address for server name", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for verified filter", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 1-12 in numeric mode", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders display name with a tooltip", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of room creation events quickly", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is non-null and room.getEventReadUpTo is null, shows disabled read receipt button", + "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should use inviter's id when room member is not available", + "test/unit-tests/components/views/auth/RegistrationToken-test.tsx::InteractiveAuthComponent > Should successfully complete a registration token flow", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should make correct request to register client", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should show a pop-up", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should render nothing if no url given", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no left space", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should add emoji", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection is not a cursor", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should create new matrix client with credentials", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking right > should skip to plus 5 seconds", + "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > renders revoke button", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > calls getCompletions when given a valid suggestion prop", + "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the default when the input is not a number", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render email addresses", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should clear textbox content when clear is called", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a falsey value", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > renders device verification cta on other sessions when current session is verified", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > should return liveData from VoiceRecording", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders device_not_found", + "test/unit-tests/utils/export-test.tsx::export > checks if the render to string doesn't throw any error for different types of events", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for the home space", + "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders plain text link correctly", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return null if the app has no avatar URL", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backslashes", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles text in tags and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > cancel button clears selection", + "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > renders options", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users cannot see encrypted messages", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error when bootstraping the secret storage, it shows an error", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should apply new styles after mounted to animate", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply to room mention", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Calls onLogoutClick", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account true", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting and adding some items should work", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show form when custom URLs disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room member list on button click", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a null room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with mjolnir tab selected", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for orphans -> people transition", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders space settings option when user has rights", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #localhost:foo.com", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is an unknown room in the predecessor event, it should not count predecessor highlight", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return properties which were changed, added, or removed", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > paginates", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a message", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by notification state then recent", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :man", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > properly handles replies", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for File rendering context", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready false", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests nothing if the room is muted", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Removes old room if it finds a predecessor in the m.predecessor event", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by presence state", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > should show the password input view", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should not call onSend when Enter is pressed", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Insertions into empty skip list works", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > start ringing on ring notify event", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows enabled when call member power level is 0", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload on window location object", + "test/unit-tests/utils/UrlUtils-test.ts::parseUrl > should not throw on no proto", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track events if anonymous", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can close the bug reporter", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is not a valid URL", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a fallback when there are no locations", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration request fails", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Tolerates deletions until skip list is empty", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if longitude is not a number", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders export type with timeline selected by default", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val < 0", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should reuse initialised oidc client", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room version", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h1 with correct attributes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates support for desktop capturer", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should create new matrix client with credentials", "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset without description", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for empty URL", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders non-beta labs settings when enabled in config", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > excluding rooms", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are available", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with unavailable error when geolocation is not available", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Regenerates all lists when the feature flag is set", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the read receipt is at the latest event", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in the only feature group are supported", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > the event_id if SendMessageParams has relation and rel_type matches THREAD_RELATION_TYPE.name", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when only of the threads has a receipt", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a deviceId", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests reduced", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address and port", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.RoomLoaded > updates viewRoomOpts", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #foo:localhost", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > handles remote disconnection", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should remove mentions that are removed by the edit", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables sign out button while sign out is pending", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated PNG", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page with correct error when login state is not found", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should launch a confirmation modal", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should has placeholder", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a non-local room ID", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return true for Room", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should close settings if account deactivated", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > handles error when updating setting fails", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Verified", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with high error correction level", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables live share setting on ok button submit", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should not run the migration", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should delete the event", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button with menu when UIComponent customisation allows CreateRooms or ExploreRooms", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready and call showUpdate when current version differs from most recent version", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a command inserts the command", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should not generate previews for rooms not rendered", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (one of the pinned widgets)", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a first non-editable part, with another one following", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOf > should return the correct positioning", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > cannot send delayed events with missing arguments", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest invalid MXIDs", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from SYNCING to RECONNECTING", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isCreated should return true", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if everything was forgotten", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result does not include homeserver config", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > and there is a thread timeline > should send receipts but no fully_read when reading the thread timeline", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is not equal to true", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with more than 2 members", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not make /messages requests when exporting 'Current Timeline'", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > prompts user to set up recovery if backups are enabled but recovery isn't", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with line breaks", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > renders radios correctly when no value is provided", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a limit", + "test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx:: > should match snapshot", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders the push notification section when a pusher exists", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > should return the same list if the lookup doesn't return any results", + "test/unit-tests/components/views/elements/crypto/VerificationQRCode-test.tsx:: > renders a QR code", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with React function component and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Join Element calls > defaults to moderator for joining calls", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > send guest access event on toggle", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should handle loud notifications", + "test/unit-tests/utils/pillify-test.tsx::pillify > should not double up pillification on repeated calls", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an verified E2EIcon when the e2E status = Verified", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the sender for the thread list", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Unverified", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking without a drag motion, it should pass the click to children", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 59 minutes formats to 59m", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > removes geolocation control on geolocation error", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return undefined for a single target without a room", "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (12.9-inch) (3rd generation); iOS 15.2; Scale/3.00)", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing an opening square bracket work", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should pass via of the server being explored when joining room from directory", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for MatrixError M_NOT_FOUND", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display 'Continue' button on permission load", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses m.predecessor when it's there", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends encrypted messages", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > calls onFinished when cancel button is clicked", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > watches settings", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > starts watching position", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases without candidate servers", - "test/unit-tests/vector/routing-test.ts::init > should call showScreen on MatrixChat on hashchange", - "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > renders revoke button", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > navigates to the space home on click if already active", - "test/unit-tests/editor/history-test.ts::editor/history > push, undo, push, ensure you can`t redo", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should allow a user to paste a URL without it being mangled", - "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when previous version of message's push actions have a highlight tweak", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the socials if disabled", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should display the modern layout", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is enabled > should render the developer tools option", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and the playback proceeds > should render as expected", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom suggestion element when renderSuggestion() is defined", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > includes threads", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders non-default timeout as selected option", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should expand arrays", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > uses cached aggregated rooms", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with args", - "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should translate _t strings", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display the \u00bbPopout widget\u00ab button", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should display a caption when no threads are unread", - "test/unit-tests/editor/range-test.ts::editor/range > range on empty model", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists state correctly without replyToEvent onbeforeunload", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display label as placeholder", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > waits for other tab to stop during startup", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > takes someone's most recent vote if they voted several times", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > assigns different keys to summaries that get split up", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should attach an empty mentions object for a message with no mentions", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is only a predecessor event, it should count predecessor highlight", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when read receipt is not on the latest thread messages", + "test/unit-tests/MediaDeviceHandler-test.ts::MediaDeviceHandler > sets audio settings", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon description as beacon name", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should throw when created with invalid config for LastNMessages", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should empty search field when the timeline rendering type changes away", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description if we choose it", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns true for an event with a renderer", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is more than max", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at end of string", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = false", + "test/unit-tests/editor/range-test.ts::editor/range > range trim spaces off both ends", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two members", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when no device is available > should log the error and show the \u00bbNo media permissions\u00ab modal", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the southern hemisphere", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true when the event for a thread receipt can't be found", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly rejects quick reaction with extra text", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when audioNotificationsEnabled setting is truthy", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider servers not allowed by ACLs", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel and retry button for an event with NOT_SENT status", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with session manager tab selected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should have disabled submit button initially", + "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders presence indicator with tooltip for DM rooms", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should retain mentions in the original message that are not removed by the edit", + "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time without hours", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is falsy", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are no members > should return an empty list", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Odd", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup key cached", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should include app version", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > does not render if the room join rule is not knock", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > createVoiceMessageRecording should return a VoiceMessageRecording", "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > start should forward the call to VoiceRecording.start", - "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should make correct request to register client", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if the given event is not a reply", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h1 with correct attributes", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends markdown messages correctly", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not have after create callbacks", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a group \"asking to join\"", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is not enabled > passes the flag in to getVisibleRooms", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #_foonetic_xkcd:matrix.org", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide read-marker at the end of creation event summary", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should not attempt registration when oidc native flow setting is disabled", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with no previously pinned messages", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should work for empty arrays", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return the intersection", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should throw upon non-20x code", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a button to open the room settings people tab", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) (5); Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text deletions", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should not start the DM", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders QR code", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens invite dialog on button click", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a 'Verify by emoji' button", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when only of the threads has a receipt", - "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should render a single upload correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: #roomMention", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows sending double-slash escaped slash commands correctly", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return true for Room", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 1", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is disabled", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on others actionable event", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, device not signed", - "test/unit-tests/components/views/messages/MFileBody-test.tsx:: > should show a download button in file rendering type", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render section when RoomHistorySettings feature is disabled", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load with an initially focused beacon", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@alice:example.com\u00ab should return false", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config succeeds but is empty", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with reference relation", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns false if device is unverified", - "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered correctly overrides setting", - "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows an avatar with globe icon and tooltip for public room", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.lowpriority=", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should fallback to normal login when client registration fails", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for poll start event", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to joined", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > disables play button while playback is decoding", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMemberCount > should update on RoomState.Members events", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > creates a new thread on reply in thread click", - "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly parses model", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should render spinner while app is loading", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > invoke > should invoke to every registered module", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide the read-marker at the end of summarised events", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return false for LocalRoom", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string with duplicate character", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with no arguments if cancelled", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a RoomMember should start a DM", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for a disabled feature", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > is hidden when no notifications exist", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns true", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > reset() > clears countseen and toasts", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog with submit debug logs option when non-networking error occurs", - "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > should render notificationState if one is provided", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label to the set of requested labels", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, PlusMenu add buttons are disabled", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should initialise oidc client from constructor", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > does not render unverified devices section when only the current device is unverified", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A > keys for B", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is not enabled > passes through the dynamic room precessors flag", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should show error if /publicRooms API failed", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > for a virtual room > should return return false", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", - "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns null for a non-location event", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by key", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the notifications panel", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with useRovingTabIndex", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > plaintext remains plaintext even when forcing html", - "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should display a placeholder", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK not cached", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user removed", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should throw when room for message is not found", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw upon non-20x code", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up drafts", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when setup encryption toast has been dismissed", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the kick button calls Modal.createDialog with the correct arguments", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately when there were already live beacons", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > resolves with current location", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > disables form while device name is saving", - "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should match snapshot", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > declining the unknown user dialog > should only invite existing users", - "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room that is ready after a while > should invoke the callbacks, set the room state to created and return the actual room id", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to deny a request", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room IDs and via servers", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot approve", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 1 minute formats to 1m", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > shows an undecryptable warning", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from crypto-setup-extensions provided by a registered module", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for notification when forced", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display all the buttons when the menu is opened", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at previous top if given", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isNew should return false", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets flag if setting false and existing event is true", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 2 days ago", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a redacted event", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves immediately if the user is already a member", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > does not delete a device when interactive auth is not required", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display an error if password change failed", + "test/unit-tests/components/views/voip/DialPad-test.tsx::clicking a digit button calls the correct function", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is the current viewed and in both spaces", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing linebreak", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > works when not a member", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns default if notification level is Activity", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should fetch cross-signing and device info", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alias if found", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget as an account widget > updates viewed room", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when all devices at app start are verified", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > nested unordered lists", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form with change server link", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room with a pending third-party invite", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes avatar", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should not show more than 100 messages", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > sets device verification status correctly", - "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > render the release announcement and close it", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > disables calling if there's a jitsi call", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > catches errors when room is not found", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be decrypted", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for emote event", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > should render dialog", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should render", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the left > should return a position to the left", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should throw when query params do not include state and code", - "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is a float in range", - "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens without a pickle key", - "test/unit-tests/editor/position-test.ts::editor/position > move backwards crossing to other part", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button if forceVerification false", - "test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx:: > should open CreateKeyBackupDialog on primary action click", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to set up backup if there is no backup on the server", + "test/unit-tests/notifications/PushRuleVectorState-test.ts::PushRuleVectorState > contentRuleVectorStateKind > should understand missing highlight.value", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv4 address and port", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a matrix client context", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > renders qr code login section", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return false for LocalRoom", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if legacy store in MigrationState `NOT_STARTED`", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > reconnects after disconnect in video rooms", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > failed to connect", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when localStorage is not available", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with an empty array, it should return true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should do nothing if the content is unmodified", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders rate_limited", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with relations > emitCurrent > should emit the related event", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates the user has been invited to a channel", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are missing", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold for join and leave", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready true", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = false", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show SSO options if those are available", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays encrypted rooms as encrypted", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > fails if the supplied URI is empty", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds no calls", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; Android 7.0; SM-G610M Build/NRD90M; Flavour GPlay; MatrixAndroidSdk2 1.0)", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return January-December in long mode", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request fails", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > getRoomIds should return the room Ids", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > doesn't clean up valid devices", + "test/unit-tests/components/views/dialogs/devtools/RoomNotifications-test.tsx:: > should render", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should throw for bad context variables", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > initiates map with geolocation", + "test/unit-tests/components/views/location/shareLocation-test.ts::shareLocation > should forward the call to doMaybeLocalRoomAction", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but relation is missing event_id", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > getRoomIds should return an empty list", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at start", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at start", + "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders null when no location", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > updates history visibility on toggle", "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for an unknown beacon id", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for File rendering context", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to true, it should short-circuit and return true", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room is not public", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should change the copy button text when clicked", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should revoke tokens when user is authenticated with oidc", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in public room", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is not a number", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up wysiwyg drafts", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render nothing when there are no pinned events", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > removes account data events for devices after sign out", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should allow an Admin to demote themselves but not others", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in the same room", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > AvatarPosition > to handle the non-overflowing case correctly", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should be a singleton", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should be able to handle empty parameters", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return true for Room", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > renders recording playback", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should only accept valid percentage", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 5", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > toggles playback on play pause button click", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return the right result for known devices", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > emitCurrent > should not emit any event", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for rooms which cannot be obtained via client.getRoom", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > returns specified room when none of the versions is in hierarchy", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show sent & received time on hover if passed", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally usk > should collect if cached locally false", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room low priority", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs with arrays", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when cross signing and secret storage are ready", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads all state keys", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest second when less than 1min - 59 seconds formats to 59s", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > values() should return an empty iterator", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an explicitly stopped beacon", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns the event for a room message", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Compact correctly", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user inactive if no activity", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if there's an ongoing (pinned) call", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > renders if there is a call", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can auto-join a room", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + modifier key combo", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should support unchecked by default", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders etag_missing", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders spinner while devices load", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with space name", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre menu when the button is clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms and getRoomUpgradeHistory during startup", "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > encloses the fonts by double quotes and sets them as the system font", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > fires favourite dispatch on button click", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > counts one unique vote per user", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes analyticsID through widget URL", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders error message", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > allows a community completion to pass through", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore.isUserAuthenticatedWithOidc is falsy", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi for large rooms", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (dm)", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays name edit form on rename button click", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > does nothing if given no room ID and not viewing a room", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown if there is an ongoing call but we are viewing the lobby", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add to selection on click of user tile", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should not mangle shift-enter when the autocomplete is open", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for emote event", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should react to value and disabled prop changes", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Prefers sender.name", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide cryptoSetup extension", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should send state=disable to API /widgets/set_assets_state", - "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information with url for non-electron clients", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > does not add double quotes if already present and sets the font as the system font", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should not show error modal when the verification request is changed for some other reason", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of first line which is empty", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does geolocation and sends location immediately when user has live beacons", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist login credentials", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return expected results when all response times similar", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should find Rooms", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to for multiline links", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Shows indent and unindent buttons when either a single list type is 'reversed'", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if nothing is open", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should not clear storage", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 2", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@b.org\u00ab should return false", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/webp", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.hangup", - "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for non-reply events", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows enabled when call member power level is 0", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-GB", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect logs", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = false", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without msgtype", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should not show restricted room join rule when upgrade is disabled", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should correctly handle getUserDeviceInfo() returning an empty map", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should work with empty queries", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving right", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails with a non-401 status code", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with a verified session", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing]() -> testing|", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > when MSC3946 dynamic room predecessors is enabled > should call getVisibleRooms with MSC3946 dynamic room predecessors", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should return usage if no args", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles tag substitution with React function component and translates with fallback locale", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > renders nothing when user has no live beacons", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button by default", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders bridges settings tab when enabled", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should look up userId using access token", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns unavailable for unavailable error", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters when parameters change during the timeout", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mentions only", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > not to send chat effects on message sending for threads", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have hover style when hovered and enabled", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 50", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders invalid_code", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders the message button", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render a spinner while loading", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.invite=", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call event is redacted", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver base_url is falsy", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A > keys for B", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > should return false if the room has no actual room id", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If two new instances start concurrently, only one wins", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.lowpriority=", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > eats clicks to maplibre attribution button", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 1 (unverified user)", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with unstable m.location msgtype", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected style attributes when avatar url for room is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then does not send, return undefined", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayNoTime > should return a date formatted for en-GB locale", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for undecrypted event", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows deleting keywords", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > expecting errors > throws if crypto is unavailable", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is not supported > renders link to download a desktop client", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should use the provided entries", + "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > calls clean on mount", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > renders event index information", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render suggestions when a query is set", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses serverName from props", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key empty string", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to shared", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for poll start event", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > should render 'Link new device' button in OIDC native mode", "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > unpaginates", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to private", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > sets up position handler with correct options", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > resetConfirm should work with a cached account password", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = true", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > test with newlines", - "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a cached sync", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render an avatar or link when called with inMessage = false and shouldShowPillAvatar = false", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice\u00ab should return false", - "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room member", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when use system theme is truthy", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does not re-wrap if called multiple times", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for all terms & services if no account data", - "test/unit-tests/models/Call-test.ts::ElementCall > get > does not pass analyticsID if `pseudonymousAnalyticsOptIn` set to false", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > when an error occurs while setting an item the cache should be cleard", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > can change the parent hook state when required", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns falsy when no users have changed power level", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should ignore the MSC3812 dehydrated device", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val > 100", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides a single vote if I have not voted", - "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from experimental-extensions provided by a registered module", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should pass appropriate permalink creator for all rooms search", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns id of the event being replied to", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should attempt to register oidc client", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for an uknown user not in the room", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite a MXID and an email to a DM", - "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > creates account data event", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > renders beacon owner avatar", - "test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts::MatrixSchemePermalinkConstructor > parsePermalink > should strip ?action=chat from user links", - "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event if not in timeline", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a non-local room ID", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is more than max", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > does not crash when given a portrait image", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:bar.com", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > should request a new token if the old one fails", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > linkification get applied correctly into the DOM", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return an empty array on no matches", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 83 to 1m 23s left", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > joins room on primary button click", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a list of active polls when there are polls in the room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji when a word is selected", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > returns null for unknown events", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders error message when history update fails", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle serverConfig updates correctly", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should not clamp numbers in range", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > room mentions", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the release announcement", - "test/unit-tests/components/views/settings/tabs/SettingsTab-test.tsx:: > renders tab", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > cannot send delayed events with missing arguments", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > disables guest access toggle when setting guest access is not allowed", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption verification panel with pending verification", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon has a stopping error", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Renders a SendMessageComposer and MessageComposerButtons by default", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return false from VoiceRecording", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > gets available spellcheck languages", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user doesnt have a push rule defined in vector definitions", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return only item when given list of length 1", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Odd", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should ask to set up a recovery key when there is no recovery key", + "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > tries to decode ogg when decodeAudioData fails", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 7 (Sender's verified identity has changed)", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for beacon locations", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit is max", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > including rooms", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return false for LocalRoom", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage", + "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders basic card", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with hyphen in domain part", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns a fake ts for rooms without a timeline", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the topic", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > test with newlines", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hosts", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds decrypted events asynchronously", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > typing with the autocomplete open still works as expected", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same but order different", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.to", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > renders size limit input with default value", + "test/unit-tests/components/views/elements/MiniAvatarUploader-test.tsx:: > calls setAvatarUrl when a file is uploaded", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for a visible event", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > getViewRoomOpts > returns viewRoomOpts", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for unknown error", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when the room version is unsupported and upgrade is enabled > should disable the checkbox", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should handle AsyncActionPayload", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request succeeds", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when rendering a DM room with a single third-party invite > should render the \u00bbwaiting for third-party\u00ab view", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should not start the DM", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 5 (Encrypted by an unverified session)", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should be ok if sync store and a rust crypto store", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should disable share button until a source is selected", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > highlights when previous version of message's push actions have a highlight tweak", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to connect if the widget returns an error", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should submit using validated config from a valid .well-known", + "test/unit-tests/audio/Playback-test.ts::Playback > stop playbacks", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders authorization_expired", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind a phone number", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > combines the keyChar and text of the suggestion in the query", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > should not report a status event if no changes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > indicates support for notifications", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders voip settings tab when enabled", + "test/unit-tests/editor/history-test.ts::editor/history > push, then undo", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Does not show indent or unindent button when outside a list", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > should render as expected", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is replaced", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > clicking on ongoing (unpinned) call re-pins it", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoDayISO > should return ISO format", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog if backups and recovery are working", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a string enum", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FT:h", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = false", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should show BulkRedactDialog upon clicking the Remove messages button", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an unencrypted room > should show the expected texts", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (ConnectionError) occurs", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > calls onClick-callback on additionalButtons", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a QR code if the other side can scan and QR bytes are calculated", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should return `cached_title` from API /widgets/title_lookup", "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly shows all the information", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when all orders are undefined", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverifiable device", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not pinnable", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should shrink arrays", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null for a null room", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send rust cryptoSDK superProperty correctly", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > highlightEvent > should dispatch an action to view the event", - "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > prepend text to existing document", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when not supported", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should ignore home shortcut if dialogs are open", - "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > should support setting a user timezone", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > other rooms are added to Notification States for all spaces containing the room exc Home", - "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 24 hour mode", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase pasted in", - "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called for a replaced event with new content should return the new content body", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 144 hours ago", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Odd", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalink via arguments", - "test/unit-tests/components/views/location/Marker-test.tsx:: > renders with location icon when no room member", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > updates device", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the success dialog when the key backup is finished", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > renders world readable option when room is encrypted and history is already set to world readable", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return the right result for known devices", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button on non-actionable event", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message and a thread without a reply > should render the message preview", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends markdown messages correctly", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag to if existing event is false", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > applies interactive class when tile has click handler", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > calls onChange when a file is uploaded", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows emoting with non-text parts", + "test/unit-tests/customisations/Media-test.ts::Media > should not download error if server returns one", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with a content body", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > counts one unique vote per user", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should call `termsInteractionCallback` upon M_TERMS_NOT_SIGNED error", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays error if changing display name fails", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete if secrets not cached locally", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should union 3 arrays with deduplication", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render phone numbers", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should call onTokenLoginCompleted", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the primaryEntityId if the search term was a permalink", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects only sessions that are part of the active filter", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English without item limit", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the creation event", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > shows a preview with us as the sender", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should not focus when disabled", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > cleans up redaction listener on unmount", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows the invite button when canInvite is true", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > uses forbidden by default when room has no guest access event", + "test/unit-tests/WorkerManager-test.ts::WorkerManager > should generate consecutive sequence numbers for each call", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=false on non-last event if last event has a receipt from someone else", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should recover from a server exception", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is undefined", + "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does render the permalink", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is not 1 and translates with fallback locale", + "test/unit-tests/Terms-test.tsx::Terms > should not prompt if all policies are signed in account data", + "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the number when it is a number", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when property changes are made", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > does nothing when room tag is not allowed", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return the items in the cache", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > stops existing live beacon for room before creates new beacon", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for should raise an error for a non-matrix.to URL", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > shows toast with unverified devices at app start", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should not render manage integrations section when widgets feature is disabled", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show view in room button when the event is not a thread root", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is false", + "test/unit-tests/components/views/typography/Caption-test.tsx:: > renders react children", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should work", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests a room whose alias matches a prefix", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendStickerContentToRoom > should forward the call to doMaybeLocalRoomAction", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and clicking \u00bbSign out of all devices\u00ab and \u00bbReset password\u00ab > should show the sign out warning dialog", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with React function component and translates with fallback locale", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is only a predecessor event, it should not count predecessor highlight", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPollStartEvent() > returns correct message for normal poll start", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should close the release announcement when the TAC button is clicked", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are not backed up", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to true", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > catches and logs errors while updating a rule", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders not logged in message", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should show a toast if the matrix server version is unsupported", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > shows a spinner initially", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Should call wysiwyg function on button click", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if download keys does not return any user", + "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise on onerror call", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not ring when incoming call state is ringing but local notifications are silenced", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > creates static own location share event on submission", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns true if device is verified", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is trusted, but device is not signed", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server even if a local suggestion gets filtered out", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns human readable name", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > should update the playback", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :monkey", + "test/unit-tests/Modal-test.ts::Modal > open modals should be closed on logout", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should aggregate error codes correctly", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Links to the old version of the room", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes English message and localized translated message", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from the current room", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should cache the error and result", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the sticker picker", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should not render pin button when user can't send state event", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when some sessions are already selected", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > renders url previews correctly", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when encryption is force disabled", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > should render the initial position", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and clicking \u00bbRe-enter email address\u00ab > should close the dialog and go back to the email input", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when match system is selected", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no e2ee well known", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is *not* in hierarchy", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element heading", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns light when login flag is set", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send reply to html message", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist credentials", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should throw when query params do not include state and code", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > hides the bold icon when the settings is set", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > wraps single anchor", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should revoke access and refresh tokens", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.emote correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested formatting", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat an non-empty and empty array", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a sync error", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not panic if there is no crypto", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch to dark", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > share dialog has correct link in an unencrypted room", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forEvent > constructs a link given an event ID, room ID and via servers", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly identifies transitions", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider provides a ref to the dom element", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > closes sidebar on close button click", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return the intersection", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the approve button if the power level is insufficient", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not capture non-permalink clicks", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display the \u00bbPopout widget\u00ab button", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is not knock", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, both sides of meridian", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > does not update map style when style url is truthy", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should call onChange when custom input is blurred with a number in it", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is not required", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option for beacon_info event", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix-help.org", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, MainMenu adding buttons are hidden", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > doesnt navigate in app when view in timeline link is ctrl + clicked", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains all sub-space's child rooms", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > displays encryption as enabled", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores end poll events from unauthorised users", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > does not render a poll tile when end event is invalid", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if feedback is disabled", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using element call for large rooms", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for old-style version strings", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > enables event indexing on enable button click", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should place calls using managed hybrid widget if enabled", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _t", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999 as 10K", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > handles uploading a room avatar", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when props get changed", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > escaped html", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command category is not .messages or .effects", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight when no version of message's push actions have a highlight tweak", + "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error fetching the backup version > shows an error", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed message events", "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999999 as 1B", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no right space", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 48 minutes, 59 seconds formats to 48m 59s", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: Threads > should display the pinned message badge", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isError should return true", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > button to accept terms is disabled if checkbox not checked", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on start()", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by last active timestamp", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on room event", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should create keys if they do not exist", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for regular unreads", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no event id", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not identify the user to posthog if anonymous", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the key storage data are available", + "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should update MatrixClient's state when the setting is updated", + "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the question for a poll I created", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should import exported keys on submit", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > does not render thread button for a beacon_info event", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders join button", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > and setting MessageComposerInput.showStickersButton to false > shouldnot display the button", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing email addresses", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on start", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should treat invalid mxids as empty queries", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near left edge of window", + "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > calls the right callbacks", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally false", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for redacted message", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not report a failure for an event that was reported in a previous session", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with appearance tab selected", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > fits map to bounds", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights the winning vote in an ended poll", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > 'Verify own device' flow > should show 'Waiting for you to verify' after confirming", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button by default", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display all the buttons when the menu is opened", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should scroll event into view when props.eventId changes", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a subspace that was being viewed", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when room already has a recording", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same tag", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > allows sending double-slash escaped slash commands correctly", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > notification level", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight message where message matches no push actions", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if that is selected", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should enter reset flow when showResetIdentity is set", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are added", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is enabled > Passes the dynamic predecessor flag to getVisibleRooms", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should persist login credentials", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should do nothing on cancel", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > updates when new polls are added to the room", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking left > should skip to minus 5 seconds", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static GIF", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > increments countSeen when toast has bottom priority", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :mailbox", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is enabled > passes through the dynamic room precessors flag", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > only returns events related to a thread", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly renders toast without a call", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > quote", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > mx-reply is stripped", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > shouldn't change when setting false", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects a missed call", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notifications type", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > hides when group calls disabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for pl", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens invite dialog when invite option is clicked", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > should create an encrytped room for 3PID targets", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > doesn't restore member info cards when switching back to a room", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > removes personal information from static self location shares", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element deletions", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return null for 2 targets without a room", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > should not show knock room join rule", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useMyRoomMembership > should update on RoomState.Members events", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons for roomId", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders with correct classes when button has kind", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ActiveRoomChanged when the viewed room changes", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > requests specific config for document domain", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to 0 seconds when less than a second - 123ms formats to 0s", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should not be able to change the power level if `canChangeLevels` is false", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should notify progress", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add mentions that were added in the edit", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to ", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same variable", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders loading message", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room can not be previewed", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for a disabled feature", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is null, shows disabled read receipt button", + "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Unreachable' for presence=unreachable", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should display 3pid email addresses and phone numbers", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > renders when the last message is an undecryptable thread root", + "test/unit-tests/editor/range-test.ts::editor/range > range replace within a part", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should cache translations", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > hides export format input when format is valid in ForceRoomExportParameters", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Image", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not track a failure for an event that was tracked previously", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a room inside of a space that was being viewed", "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage with params", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > sets notification count when count is changing", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets flag if setting false and existing event is true", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should throw when created with invalid config for LastNMessages", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > works in conjunction with useSystemFont", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TT:h", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles guest users", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have never been online", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRooms if no completionId is present and completion starts with #", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add relation to message", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables the checkbox when there is no server support", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > clicking cancel button from location picker closes dialog", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders a file as the avatar when supplied", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device", + "test/unit-tests/async-components/dialogs/security/RecoveryMethodRemovedDialog-test.tsx:: > should open CreateKeyBackupDialog on primary action click", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should enable submit once file is uploaded and passphrase pasted in", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Even", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if UIFeature.Feedback is disabled", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and a FileBody for mismatched extension", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when a theme is selected", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions between other events", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint to issuer when not configured", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends plaintext messages correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines mixing paragraphs and line breaks", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should return 0 for values that cause a division by zero", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should automatically close when a modal is opened", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag false on no ordering difference", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button when user cannot send messaged", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should call notifyTimelineHeightChanged() for the same context", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest minute when less than 1h - 1 minute formats to 1m", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > fires Action.RoomLoaded", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > watches settings", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps asterisks", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting is false and space changes to a meta space", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > dismisses toast on accept button", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option with selectedLabel", "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was added", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > in middle of string with duplicate character", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > favourites space does contain favourites even if they are also shown in a space", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should display or not placeholder when editor content change", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for other errors", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Returns null when the room ID contains no colon", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders nothing if member.membership is undefined", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores extra answers", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to a custom level", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return false for LocalRoom", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates support for desktop capturer", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > any markdown turns message into html", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if clipboard data is null", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > should allow filtering", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is undefined", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear in code blocks", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > opens poll history dialog on button click", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = false", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > handles when a muted room is unknown by the room list", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the spotlight when the search button is clicked", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle updating to a server with no supported flows", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to cancel a search", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should override hsUrl in creds when login response wellKnown differs from config", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is day before the current day", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders reject and ignore action buttons when handler is provided", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs with arrays", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hostnames with ports", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should skip to auto join", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events with custom parameters", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: /someCommand", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should close editing", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with an event on the main timeline and a later one in a thread > an unthreaded receipt for the later threaded event makes the room read", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor event, it should count predecessor highlight", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > does not render if user can neither approve nor deny", - "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display an error icon when in error", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns max values if content size is not specified", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays encrypted rooms as encrypted", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show cannot pin warning", - "test/unit-tests/email-test.ts::looksValid > for \u00bb@\u00ab should return false", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the threads panel", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles many users following the same sequence of memberships", - "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders with children", - "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > can change starting calls power level", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > bold within a word", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > does not display rooms with nsfw keywords in results when showNsfwPublicRooms is falsy", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while signing in", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is knock", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the setting is in a loading state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when user inputs any whitespace after the special character", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns undefined if notification level is None", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > clears the unread flag when viewing a room", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect localstorage settings", + "test/unit-tests/components/views/location/Map-test.tsx:: > renders", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should persist credentials", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and sending receipts is disabled > should send a fully read marker and a private receipt", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to public", "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a label", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a pill with an unknown type", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > catches and logs errors while updating a rule", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders static remaining time when displayLiveTimeRemaining is falsy", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.server_notice=", - "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_name when resolveable", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :kiss", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user swapped", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render a spinner while loading", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near top edge of window", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > updates settings when match system is selected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > showRoom > shows room", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a beacon with live property set to false", - "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should not accept emoji strings into type=plain", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Correctly tags rooms > renders Public and Knock rooms in Conferences section", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is accepted", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isCreated should return false", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect device id", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows ended vote counts of different numbers", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after un-voting", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > public room > shows a globe", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > toggles timeline in right panel on click", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should deduplicate a single array", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect device keys", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should work with hostnames with ports", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > and an e2e status it should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request fails", - "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should update MatrixClient's state when the setting is updated", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Odd", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons change live state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams is missing relation", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > preserves non-persisted widget on container move", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > logs and opens a dialog on a geolocation error", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose default theme if system settings are inconclusive", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders the push notification section when a pusher exists", - "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when cancel is clicked", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > meets room requirements if there are enough rooms", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links with emphasis are \"escaped\" correctly", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider renders children as expected", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops watching position when user has no more live beacons", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > sets topic", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Hides a verified dehydrated device", - "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Offline' for presence=offline", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > doesnt navigate in app when view in timeline link is ctrl + clicked", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a blank poll", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return true if bug_report_endpoint_url is set and UIFeature.Feedback is true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and no editor ref does not call onChange", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > should return false", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > when viewing a call without a broadcast, it should not raise an error", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should not show server picker", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false without room", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows direct message and mention buttons when member userId does not match client userId", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns false for a non location event", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > calls onClick", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > translated correctly when plural string exists for count", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 6 days ago, but less than 144h", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is encrypted and the url preview is enabled", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/location/Marker-test.tsx:: > uses member color class", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length < B length", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps underscores", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition to current position", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption info panel without pending verification", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links in codeblock are not modified", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is just a room", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should open spotlight when Ctrl+k is fired", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return false for LocalRoom", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added from A->B", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling an at-room completion", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns true for a room that only contains a hidden event", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes display name", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if room not public nor knock and the user cannot change join rules", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should throw when oidcClient could not be initialised", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for a redacted event", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > triggers the primary action callback for denied request", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should remap error codes correctly", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > uses my local vote", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is day before the current day", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onSend when Enter is pressed", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 4", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should display or not placeholder when editor content change", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders marker when beacon has location", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example.com\u00ab should return true", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when an event has no sender", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > registers service worker", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.member", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > Can call onNotReady before onReady has been called", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows an active call with back and leave buttons", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should download on click", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > updates delayed events", + "test/unit-tests/UserActivity-test.ts::UserActivity > should extend timer on activity", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction with space", + "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 24 hour mode", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders guest access section toggle", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false if visibility customisation returns false", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return false if event is not unpinnable", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > should return the value \"platform\".\"Electron.showTrayIcon\"", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right into no right space", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns false when setting value is not true", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > stops sharing on stop button click", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates a loud notification when enabled", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows a warning for an event from an unverified device", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should allow to invite multiple emails to a room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not have active class when enabled", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should be enabled if config is set", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > when switching rooms in the all rooms home space don't switch to related space", + "test/app-tests/wrapper-test.tsx::Wrapper > wrap a matrix chat with header and footer", + "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should prevent \u00bbSettings\u00ab link click from bubbling up to radio buttons", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims from localStorage", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme on onload call", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw if user_id is missing from response", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=offline", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return false for a non pinnable event type", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should render the custom theme section", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if set false and existing event is false", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with no \"others\"", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when no session data is found in local storage", + "test/unit-tests/Notifier-test.ts::Notifier > onEvent > should not evaluate events from the thread list fake timeline sets", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.audio for audio files", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > without requests to join > renders a paragraph \"no requests\"", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list starting later", "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to false when setting false", - "test/unit-tests/Reply-test.ts::Reply > stripPlainReply > Removes leading quotes until the first blank line", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon is not live", - "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows the presence indicator in a DM room that also has functional members", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > escapes angle brackets", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when identity server config has fail error and recognised error string", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon has no location", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > ordered lists", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > cannot be disabled", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders div with role button by default", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room without predecessor", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls fetch when data types has text/html and data can parsed", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return false for LocalRoom", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on logged in action", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders unverified devices section when user has unverified devices", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in managed hybrid environments", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display only the home and preference buttons", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders other sessions section when user has more than one device", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result is falsy", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was not fetched", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if room not public nor knock and the user cannot change join rules", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should not show spell check setting if unsupported", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render not display the tooltip when the release announcement is displayed", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with local, non-local and invalid votes", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > handles remote disconnection", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when editing with plain text", - "test/unit-tests/WorkerManager-test.ts::WorkerManager > should generate consecutive sequence numbers for each call", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines mixing paragraphs and line breaks", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of membership events quickly", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should put unknown app version if on dev", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and the playback proceeds > should render as expected", + "test/unit-tests/WorkerManager-test.ts::WorkerManager > should support resolving out of order", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should support custom clone functions", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > should not display the button", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for no relation when not passed one", + "test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts::viewUserDeviceSettings() > dispatches action to view session manager", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu with all the options", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is in secret storage", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts a single vote as normal if the poll is ended", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have data-is-expanded when it has two lines", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > clears filter from no results message", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > values() should return the items in the cache", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if client cannot send state event", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should scope the location for a widget when setting OIDC state", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 6 (Not encrypted)", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the call lobby is viewed", + "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display an error icon when in error", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has knock style", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > should overwriteAccountAuth", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > does nothing when there are no toasts", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > handles the bot notice inversion correctly", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > grabs last room that is in hierarchy when latest version is in hierarchy", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text description", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the release announcement", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders join button", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return true for Room", + "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should ordering by the provided key order", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.1 Simple 3-dimensional", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > opens the chat panel if there are unread messages", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Lists all rooms that the client says are visible", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomname > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string for a falsy argument", + "test/unit-tests/stores/AutoRageshakeStore-test.ts::AutoRageshakeStore > when the initial sync completed > and an undecryptable event occurs > should send a to-device message", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > creates pin drop location share event on submission", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a cancelable status", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has an identity server connected > renders email mismatch message when invite email mxid doesnt match", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains m.location with valid uri", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with changed power level", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the end of the timeline", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on start()", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > disables all rooms in home setting when home space is disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens share room dialog on button click", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > honours m.space.parent if sender has permission in parent space", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render anything if the type cannot be detected", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from someone else to me", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > cancelling edit switches back to original display", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to the default", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to true for all of them, it should return true", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return true if pinned events contains the event id", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes multiple devices", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no room", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown devices", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return true for pinnable event types", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > starts watching position", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > show account management link in expected format", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > sets instance on window when doesnt exist", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders non-default timeout as selected option", "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > turns html tags back into markdown", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread thread notification badge", - "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Element video room invites", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should return the profile", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates no support for jitsi screensharing", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to approve a request", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > returns false when no threads", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onKeydown/onKeyUp handlers for keys other than space and enter", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > renders section with add space button when UIComponent customisation allows CreateSpace", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onChange handler", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :golf", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should re-check the encryption state and displays the correct panel when the user clicks cancel the reset identity flow", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing when clearing if flag is false", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with an empty array, it should return false", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > should log the invalid content", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns a pretty list without hasMore", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > and a new event appears > should emit the new event", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a message with the correct fallback", - "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > looks as expected", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show full date & time on hover", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders back button from location picker screen", - "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects call type", + "test/unit-tests/utils/createVoiceMessageContent-test.ts::createVoiceMessageContent > should create a voice message content", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect logs", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting an unkonwn item should not raise an error", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > updates map style when style url is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the notifications panel", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls addReplyToMessageContent when there is an event to reply to", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not track any events if disabled", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should set and return container height", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to get pickle key", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is rejected", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = true", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with no previously pinned messages", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching push rules fails", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbRe-enter email address\u00ab > go back to the email input", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should create a new object", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > calls onFinished when cancel button is clicked", "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user without timestamp > and the current user adds a Jitsi widget > should not remove the last widget", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should call onError if setting visibility fails", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if you're alone", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return false for LocalRoom", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > backslashes", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns undefined for an unknown setting", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room added", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders leave option when user does not have rights to see space settings", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :boat", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > registers service worker", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = false > should invite all users", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with markdown empasis in them are getting properly HTML formatted", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic to HTML", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > getRoomIds should only return the valid items", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes underlying cause error", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should pass through to the handler if setting is not disabled", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not touchInput", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit and includeCount", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for a UTD event", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect custom fields", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > favourites are added to Notification States for all spaces containing the room inc Home", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a LocalRoom > should not show the stickers button", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces encryption", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCountLong > formats numbers according to the locale", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; U; Android 6.0.1; SM-A510F Build/MMB29; Flavour GPlay; MatrixAndroidSdk2 1.0)", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > handles invalid centerGeoUri", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > a threaded receipt for the event makes the room read", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string does not exists at all", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing for muted channels", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns default for other error", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known does not promote encryption > should return false for a DM room with one third-party invite", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return mapping for develop version string", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout if the client is not viable", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for people -> all transition", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes subsequent positions", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > succeeds when no synced rules exist for user", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should log error and return to welcome page when userId lookup fails", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with an empty array, it should return false", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a pill with an unknown type", + "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should maintain the pointer to the given array", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > sends a request even if everything has been read", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > calls showJoinRoomError()", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should has placeholder", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > doesn't end the call when the last participant leaves", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits to unknown events", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for room links with vias", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > and setting MessageComposerInput.showPollsButton to true > shouldtrue display the button", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when cancel is clicked", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /whois > isEnabled > should return true for Room", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with non-string body", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should display the deactivate account dialog when clicked", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up *eventually* when the first terminated uncleanly", + "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should maintain the pointer to the given map", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key and the legacy key undefined", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks connection state", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not focus when disabled", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rendering PiP content 2 > should update the PiP content", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should reset liveliness error when server config changes", "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Watches the feature flag setting", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should recalculate all rooms when the client is ready", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should recover from a server exception", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for an uknown user not in the room", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > displays a spinner after submitting", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the threads panel", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should display oidc-native continue button", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should enable theme selection when system theme is disabled", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = Element Desktop: macOS", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at middle of single line", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render a loader while loading", + "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows the presence indicator in a DM room that also has functional members", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect device keys", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > unignores the user", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider works as expected with useRovingTabIndex", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > renders addresses section", + "test/unit-tests/stores/notifications/NotificationColor-test.ts::NotificationLevel > humanReadableNotificationLevel > correctly maps the output", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > hides the bar when someone else approves or denies the waiting person", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999999 as 100M", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > just a code block", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if that is selected", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with autolinks are not touched at all and are still properly formatted", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an expired beacon", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty body should return null", + "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > should show some emojis once keys are exchanged", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should cancel edit on cancel button click", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that All filter for ThreadPanelHeader properly renders Show: All threads", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > renders nothing when user has no live beacons", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for unsent event", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for admin contact links", + "test/unit-tests/email-test.ts::looksValid > for \u00bba@b.org\u00ab should return true", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles master switch correctly", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isNew should return false", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > resets secret storage", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > failed to connect", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not store clientId or issuer", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with a replace relation", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching pushers fails", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not render any own beacon status when user is not live sharing", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with stable m.location msgtype", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Odd", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > submits location", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if functional members state event does not have a service_members field", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with defaults", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace user mentions with user name in body", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing up and down arrows allows us to change the autocomplete selection", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should not create a public room without an alias", "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of unreads", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > should return false", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window when it starts with no overlay events", - "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'key storage out of sync' toast", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type Notification dispatches view_room", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when participants change", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Tolerates multiple, repeated inserts of existing rooms", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is day before the current day", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should not be healthy if no indexeddb", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert multiple new lines into existing document", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should be empty by default", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return true for Room", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should return accessToken, configured homeserver and identityServer", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders key icon", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > returns null for unknown events", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks containing markdown", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when UIComponent.InviteUsers customisation hides invite", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return false if client cannot send state event", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should not show spell check setting if unsupported", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should noop when selecting no file", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :heart", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns max values if content size is not specified", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > excludes malformed responses", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when some feature is in beta", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knocked to the room", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > is silent about the top answer if there are no votes", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button does work as expected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams is missing relation", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > removes listeners", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = false, DM = true", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should continue to post login setup when no session is found in local storage", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverified device", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > handles when room is a space", + "test/unit-tests/Reply-test.ts::Reply > shouldDisplayReply > Returns false for redacted events", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag false if same", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMemberCount > should update on RoomState.Members events", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return true when user can invite and is a room member", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.video for video files", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately when there were already live beacons", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with all behaviour", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should call the onResetIdentityClick callback when the reset cryptographic identity button is clicked", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > opens context menu on create space button click", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :hand", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > should display message if crypto is not available", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > lets you click it", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows call details and connection controls if the call is loaded", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no polls message and a load more button when not at end of timeline", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting changes", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a 'Start' button", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept :NUM (port specifier)", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > hides unpinnable events not found in local timeline", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > opens sidebar on view list button click", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > allows dots in localparts", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event not sent by current user", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > initiates map with geolocation", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no vote event when I click what I already chose", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > updates component on decrypted event", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbClose\u00ab > should not start the DM", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow removing multiple devices at once", "test/unit-tests/createRoom-test.ts::createRoom > sets up Jitsi video rooms correctly", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate added properties", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is connected", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should not allow to unpinall", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > adds ambiguous key to all ids with non-unique names", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a #roomMention is followed by other text", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with html content", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > correctly emits events for metaspace changes during onReady", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with delete", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render anything if the type cannot be detected", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should render section when account deactivation feature is enabled", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when adding a mention", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room using values set from ForceRoomExportParameters", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after a spoiled ballot", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room IDs and via servers", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders viewing room message when room an be previewed", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should cancel the dialog from within the dialog", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly persists state to and from localStorage", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text deletions", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is undefined, uses .events_default", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display a dialog if password change succeeded", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a multiple power level changes", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include reactions", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should not parse #foo without domain", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens thread on click", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a verified device with no metadata", "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > renders text and placeholder correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.recent=", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > Password change > should display an error if password change failed", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped beacon UI for an expired beacon", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > waits for messaging when connecting", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays error when playback decoding fails", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place and key in same place in insertion order", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is true if the current room is open", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > does not re-sort on possible mute change when room did not change effective mutedness", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should view in the timeline", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error from the event index", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if no room", - "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should display public rooms when searching", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should have an SDK-branded destination file name", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > getRoomIds should return an empty list", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should do post-logout cleanup", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 4 when notificationCountType is 4", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when UIComponent customisations disable room and space creation", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > handles the happy path", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the room name when the room has a valid completionId", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > room pill", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and validating the link from the mail > should display the confirm reset view and now show the dialog", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clicking with a drag motion above the threshold of 5px, it should not pass the click to children", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > when there are cached values and membership updates > and membership events with the same values appear > should not invalidate the cache", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Enabled if backup key is cached locally", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should gracefully handle invalid MXIDs", - "test/unit-tests/createRoom-test.ts::createRoom > sets up Element video rooms correctly", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches case-insensitive", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same but order different", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > should not show a shield for previously-verified users", - "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > handles errors fetching session key", - "test/unit-tests/utils/WidgetUtils-test.ts::getLocalJitsiWrapperUrl > should generate jitsi URL (for defaults)", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops live beacons when geolocation permissions are revoked", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.member", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the events", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns null when setting is not incompatible", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should show the \u00bbinvite anyway\u00ab dialog if the profile is not available", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return null for 2 targets without a room", - "test/unit-tests/utils/exportUtils/exportCSS-test.ts::exportCSS > getExportCSS > supports documents missing stylesheets", + "test/unit-tests/UserActivity-test.ts::UserActivity > should return the same shared instance", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not pushrules", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns client information for the device", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first containing space for room", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays error when device name fails to save", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a loading state when the encryption state is computed", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should tag a room low priority", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Opens room inviter on button click", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > after a session is restored", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when user is not a member", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is undefined", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions when a beacon fails intermittently", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally false", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > does not render non-beta labs settings when disabled in config", + "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when not animated", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > renders a live beacon with a location correctly", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (input pos)", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when config is invalid JSON", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should not abbreviate if has path parts", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > opens space settings when space settings option is clicked", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Unregister works as expected", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders emoji and upload buttons in wide mode", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given no room ID and not viewing a room", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverifiable device", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > on location updates > updates last updated time on location updated", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when called with an empty array, it should return false", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a web device type", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (invite)", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > honours the hour format setting", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders reaction row button custom image reactions correctly", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show modal if error is encountered", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > should collect if key cached locally true", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button and the display label", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > updates when the trust status updates", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render mobile registration", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 2 days ago", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > unordered lists", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should complete an sso flow", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :sweat", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > caret resets correctly to current line when untoggling formatting while caret at line end", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a second non-editable part, with another one before it", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not raise an error on getPendingEvents (implicitly check for pendingEventOrdering: detached)", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should show dialog if some encrypted rooms", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds votes from multiple people", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should handle decimal versions", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should hangup all legacy calls", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no room", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added and removed in the same set", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should generate a thumbnail if one isn't included for animated media", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mentions only", + "test/unit-tests/components/structures/MessagePanel-test.tsx::shouldFormContinuation > does not form continuations from thread roots which have summaries", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption for an event that becomes visible later", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > disables Add Room when user does not have permission to add rooms", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the HTTP source if the room provides a MXC url", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage for invalid input", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not explicitly banned by ACLs", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should access to 4S and call onFinish when 'Enter recovery key' is clicked", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > renders world readable option when room is encrypted and history is already set to world readable", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should not mangle code blocks", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct > 1", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for beacon_info event", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > should resolve the promise after invoking the callback", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::getPowerLevels > returns an empty object when room.currentState.getStateEvents return null", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create space dialog on add space button click", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > hides the message button if the visibility customisation hides all create room features", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a newline work", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect user id", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders error message when history update fails", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (M_FAKE_ERROR_CODE) occurs", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Curl Client/1.0", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > showRoom > shows room", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if subheading is unset", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders marker correctly for a self share", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render inline katex", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to private", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should support optional thumbnail params", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should not clean up drafts before expiry", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on initial load", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > should return the profile from the API and cache it", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should warn when room is not public", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for poll start event", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should display an edited pinned event", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > renders", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and '.m.room.message' are defined, uses the value", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > disables button correctly", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > does not update on other account data", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example\u00ab should return false", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > generates correct mutations for a changed model", + "test/unit-tests/vector/routing-test.ts::init > should call showScreen on MatrixChat on hashchange", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple users", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hosts", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and a valid editor ref calls onChange with the editorRef innerHTML", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display the children if there is no user to display", + "test/unit-tests/editor/history-test.ts::editor/history > undo after keystroke that didn't add a step is able to redo", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when updateSpace is called", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace room mentions with room mxid in body", + "test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx:: > renders", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, PlusMenu add buttons are disabled", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > renders user labels correctly", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should display the generic error message when the roomId doesnt match", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should order the room with the same notification level by most recent", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple variable substitution and translates with fallback locale", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops watching position when user has no more live beacons", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > should parse html iframe snippets", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should retain backslashes", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to connect backup if there is a backup on the server", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > uses cached aggregated rooms", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget with stickyPromise > should wait for the sticky promise to resolve before starting messaging", + "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should only clone the top level properties", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the other member's avatar URL", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains orphaned rooms", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > should display the button", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near right edge of window", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > onLoggedOut should clear the UserProfilesStore", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding message", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest valid unknown MXIDs", + "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > reply with voice recording", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > removing whole string", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to canonical parent space for room", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the dial pad when the dial button is clicked", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > sets topic", + "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information without url for electron clients", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @localhost:foo.com", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can create email pushers", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a room alias permalink", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders map without markers when no live beacons remain", + "test/unit-tests/Rooms-test.ts::setDMRoom > when the direct event is undefined > should update the account data accordingly", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning rejects", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; SunOS i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: SunOS", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > calls onClick handler on click", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > history is generated for certain phases", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should create and start new matrix client with credentials", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > @room pill", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist device language when available", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > publishes position for new beacon immediately", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > updates markers on changes to beacons", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to preset value when custom input is blurred blank", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, west of meridian", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > should return undefined if no room shared with the user", + "test/unit-tests/vector/routing-test.ts::onNewScreen > should replace history if stripping via fields", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for sticker event", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when the pointers are the same", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to top level space", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with people", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > should ignore reply_to_event for Thread panels", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > oidcClientstore should return a OidcClientStore", + "test/unit-tests/email-test.ts::looksValid > for \u00bb\u00ab should return false", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished without parameter when Done is clicked", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > does not call getCommand for valid command with invalid prefix", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > expands current session details", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > sortBeaconsByLatestExpiry() > sorts beacons with timestamps before beacons without", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > translates a basic string and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return true for Room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with labs tab selected", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for emote event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if there is a command surrounded by text", + "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new DM room > should update the account data accordingly", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist credentials", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom in on zoom in click", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > renders audio processing settings", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders element replacements", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > activity renders unread notification badge", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is not a number", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 0 to 0s left", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse mixed keyword notifications", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should set account management endpoint when configured", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should call onFinished with no arguments if cancelled", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns remaining duration", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected style attributes when avatar url for room is falsy", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user removed", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns activity if a thread in the room unread messages", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not render export type when set in ForceRoomExportParameters", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the deny button if the power level is insufficient", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > doesn't show ask to join if feature is disabled", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when store is initialised with live beacons > kills live beacon when geolocation is unavailable", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking back button from location picker screen goes back to share screen", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle large numbers of hidden events quickly", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Odd", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with keyboard tab selected", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to request to join", + "test/unit-tests/theme-test.ts::theme > getOrderedThemes > should return a list of themes in the correct order", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content without error style when map_style_url is not configured", + "test/unit-tests/Terms-test.tsx::dialogTermsInteractionCallback > should render a dialog with the expected terms", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/jpeg", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element dbg/1.5.0-dev (Xiaomi Mi 9T; Android 11; RKQ1.200826.002 test-keys; Flavour GooglePlay; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes as normal if the poll is ended", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > and setting MessageComposerInput.showStickersButton to true > shouldtrue display the button", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should throw when room for message is not found", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > does not render space header when room is not a space room", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :golf", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > does not render react button when user cannot react", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > should work with empty queries", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > swaps to the replied event room if it is not the current room", + "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > does not render the room options context menu when UIComponent customisations disable room options", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when beacon has no related locations", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a hint", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should convert HTML entities", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object pointer", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset type", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if we have an existing suggestion but no command match", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 3", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > should render the expected pill", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns the event for a location event", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if now guest spa link is configured", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji when a word is selected", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > disables room preview toggle when history visibility changes are not allowed", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders simple word changes", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if there's already a call", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should attempt to register oidc client", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for orphans -> all transition", + "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens with a pickle key", + "test/unit-tests/components/views/voip/LegacyCallView/LegacyCallViewButtons-test.tsx::LegacyCallViewButtons > should render the buttons", "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) electron/1.0.0 Chrome/53.0.2785.113 Electron/1.4.3 Safari/537.36 = Element Desktop: Windows", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Odd -> Odd", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns multiple results in order of search string appearance", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > creates a modal on openDesktopCapturerSourcePicker", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders loading message", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when calling with video = false and an audio device is available > should return the audio stream", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword with same actions as existing rules when keywords rule is off", - "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should allow keyboard navigation using arrow keys", - "test/unit-tests/vector/init-test.ts::showError > should match snapshot", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert in middle", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should move if there is a room", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should support removing unknown keys", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return valid content", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > unpinAllEvents > should unpin all events in the given room", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 4 pinned event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is false", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > submits location", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > clears error message for notification rule on retry", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month and date when last activity is more than 6 days ago", - "test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx::FeedbackDialog > should respect feedback config", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/SSK not cached", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > joins the call and closes the toast", - "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders presence indicator with tooltip for DM rooms", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not do any geolocation when user has no live beacons", - "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for an enabled feature", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle a too-short body", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should not report a failure for an event that was reported in a previous session", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with backspace", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return false for default level -50", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders expired", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > shows nothing for muted channels", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for PL", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was pinned, with multiple previously pinned messages", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding actions", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return false for LocalRoom", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should open dialog with custom options", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > share dialog has correct link in an unencrypted room", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new email addresses", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders the first 20 answers if 21 were given", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is provided > renders a link to open the room settings people tab", - "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > on sets signed device isolation mode", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to invite", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > does not rename session or refresh devices is session name is unchanged", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in rooms larger than 2 members", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns the event for a room message", - "test/unit-tests/editor/history-test.ts::editor/history > history step is added at word boundary", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > should render a room without a message as expected", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > popCard > removes the most recent card", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > prefers size stashed in LocalStorage to the defaultSize prop", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status encrypting", + "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if user lacks permission", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should keep RoomUpload's total and loaded values up to date", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with a content body", + "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all unverified devices button works", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes angle brackets", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the warning icon", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 83 to 1m 23s left", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with react node and translates with fallback locale, attributes fallback locale", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > updates room state when connecting and disconnecting", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a window source in the window tab", + "test/unit-tests/theme-test.ts::theme > enumerateThemes > should be robust to malformed custom_themes values", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > shows a public room label for a public room", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setup > uses the baseUrl", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error when no event index is found and enabling not in progress", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls getCommand for a message starting with a valid command", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to SSO login", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should default to 50 if no powerlevel specified", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for a room running into the create timeout > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by name", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders a dropdown option for a non-default timeout value", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > setActiveRoomInSpace > should work with Home as all rooms space", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes back to default style when wire errors are cleared", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders settings marked as beta as beta cards", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for membership changes that are not current user", "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > keeps sharing positions when geolocation has a non fatal error", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return January-December in long mode", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > focuses on beacon location on sidebar list item click", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is cached", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > is silent about the top answer if there are no votes", - "test/unit-tests/UserActivity-test.ts::UserActivity > should extend timer on activity", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should consider pointers when testing values", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns an empty map when no member can be found", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles text in tags and translates with fallback locale, attributes fallback locale", - "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on string enums", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns an empty object when no event exists for the device", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits for events other than the latest one", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display the recovery key", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should enable encryption toggle and disable field when server forces encryption", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > renders an ended poll", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hours when less than 24h formats to 2h", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Public and Knock rooms in Conferences section", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables all buttons with disabled prop", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when there is no Crypto available", + "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should not accept emoji strings into type=plain", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on element differences", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > throws with unavailable error when geolocation is not available", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TT:h", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > displays an error when session display name fails to save", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when child room is added", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f emoji", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect support properly", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to disconnect if the widget returns an error", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight message where no version of message matches any push actions", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > opens delegated auth provider to sign out a single device", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > resets the model correctly", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show continue button when oidc native flow is correctly configured", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.image event type", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly it contains varying length of backticks between text", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayUnion > should deduplicate a single array", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when UIComponent customisations disable room options", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll edit event when editing", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is a private space", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > should roll back power level change on error", + "test/unit-tests/Reply-test.ts::Reply > stripHTMLReply > Removes from the input", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > returns null for a non-location event", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when crypto is not enabled", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides unread notification badge", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally true", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should display public rooms when searching", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were pinned", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with people filter", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite more than one email to a DM", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > warns when removing a room that is not indexed", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist access token when idb is not available", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when user does not have cross signing keys and server does not support cross signing", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should listen to the right panel", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a #roomMention is followed by other text", + "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > defaults target and rel", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should clear the error", + "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback on from stopped state", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > and a room encryption state event > should return true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when caret is not at the end of the text", + "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > Sets up appropriate callEventGrouper for m.call. events", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sets layout", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create room dialog on add room button click", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for double slashed command", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate e2ee URL previews on a fresh login", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated WEBP", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should create a client when creating token refresher fails", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key", + "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_config", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map display is not configured properly", + "test/unit-tests/createRoom-test.ts::createRoom > should strip self-invite", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should intercept clicks with a ViewRoom dispatch", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect restricted rooms in v9 and v10", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is disabled if there is an other ongoing call", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not render device verification cta when current session is not verified", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for MatrixError M_NOT_FOUND", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > should render the room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should display an error when trying to continue with an empty homeserver field", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > looks as expected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills with interesting characters in mxid", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender and get sender", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unverified device", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards pin drop event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send empty html message", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should render when asked to", + "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should roll over", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected attributes when avatar url for room is truthyf", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child favourites", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should open forward dialog", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return true if the app is in the container", "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > does not change parent hook state if suggestion is null", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for removed room rules", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles noisy", - "test/unit-tests/theme-test.ts::theme > enumerateThemes > should return a list of themes", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should update integrations provisioning on toggle", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID without protocol", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have disabled class when disabled", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if there is no end event", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 3 days, 6 hours, 48 minutes, 59 seconds formats to 3d 6h 48m 59s", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > if calling .invite throws something strange, show default error message", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label File with size", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is not bridging messages to any platform", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include the topic", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = true", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if user has no encrypted rooms", - "test/unit-tests/vector/routing-test.ts::onNewScreen > should replace history if stripping via fields", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if installed WPA", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders additionalButtons", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > when call to client.getRoom is null, shows disabled read receipt button", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should render the custom theme section", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows block button when member userId does not match client userId", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given no room ID and not viewing a room", - "test/unit-tests/createRoom-test.ts::createRoom > doesn't create calls in non-video-rooms", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first containing space for room", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel and retry button for an event with NOT_SENT status", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > does not add Twemoji font when disabled", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a beacon that is not live", + "test/unit-tests/components/views/location/MapError-test.tsx:: > does not render button when onFinished falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div tags when enter is pressed then user types more when ctrlEnterToSend is true", "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles no spaces", - "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en-GB", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles the client being stopped", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change only the level of someone with a lower level", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when UI customisation hides invites", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > renders nothing when there is no call", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from the current room", - "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should display room member list when payload has a falsy event", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll edit event when editing", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > createVoiceMessageRecording should return a VoiceMessageRecording", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > changing the filter clears selection", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > should show topic modal if no args passed", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should display an edited pinned event", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > disables submit button until geolocation completes", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > removes beacon event id from local store", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display only the home and preference buttons", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when initial sync is not complete", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > clears widget persistence when destroyed", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to connect if the widget returns an error", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for all of them, it should return false", - "test/unit-tests/utils/numbers-test.ts::numbers > defaultNumber > should use the number when it is a number", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render initial tab when initialTabId is set", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders voip settings tab when enabled", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > when clicking the pill > should dipsatch a view user action and prevent event bubbling", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > remains connected if we stay in the room", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the parent space after leaving a subspace that was being viewed", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows an error if there are no via servers", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should not show knock room join rule when upgrade is disabled", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :hand", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick prefer candidate servers with higher power levels", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > creates a thread when needed", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > Active state > stops sharing on stop button click", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > fits map to bounds", - "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should be in loading state when checking the recovery key and the cached keys", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = true", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > renders in error mode", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should return usage if no args", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > people", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when getRelationsForEvent is falsy", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm error > should set the room state to error", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect customApp", + "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with react description", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders the default context menu", + "test/unit-tests/components/views/messages/MVideoBody-test.tsx::MVideoBody > does not crash when given a portrait image", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > initialises correctly with no beacons", + "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > does not show filter container when disabled by UIComponent customisations", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alt alias if found", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > does not return a leading 0 for single digit days", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999999 as 10B", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbRightPanel.phases\u00ab", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles other errors", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notification type", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns undefined when there is no initial screen in session storage", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should remove the last added selection when backspace is pressed in empty input", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key with an empty m.topic key", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at end of last line", + "test/unit-tests/Reply-test.ts::Reply > stripPlainReply > Removes leading quotes until the first blank line", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are not backed up", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if @userMention is surrounded by text", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org?via=elsewhere.ca", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-ie", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom() and sets promptAskToJoin state to false", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > linkification is not applied to code blocks", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should retry if initial attempt failed", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no crypto", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an unknown email > should show an email not found message", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > handles error when updating join rule fails", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > keeps the original timestamp after repeated decryption failures", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a redacted beacon", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders when silence button when call is not silenced", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English with item limit", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders advanced settings tab when enabled", + "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > Return undefined with an empty TZ", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile linking to an event if there are via servers", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > deletes backup after confirmation", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > opens poll history dialog on button click", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat three arrays", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are left", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > renders notifications matching the snapshot", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with home behaviour", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders expired", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user not found via API should return null and cache it", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is disabled, it should not render the developer tools option", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room threads list on button click", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return false for LocalRoom", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.server_acl", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Odd", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Odd", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is the exact same moment", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should listen to release announcement data changes in the store", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > sets map center to centerGeoUri", "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > updates the call's skipLobby parameter", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > should send the new password and show the click validation link dialog", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when events sender cannot be found in room state", - "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > renders", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Closes the dialog when the form is submitted with a valid key", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return false when room is just a room", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if there is no room", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders voip tab when voip is enabled", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room removed", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room as favourite", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > uploadFile > uploads a file", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support inline katex", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > listens for client events", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > should render as expected", + "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a TextInputField", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > mention button fires ComposerInsert Action", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > Dismiss toast if user starts call and skips lobby when using shift key click", "test/unit-tests/editor/history-test.ts::editor/history > overwriting text always stores a step", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with React function component", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.invite=", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when ctrl+Enter is pressed", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if there is a command surrounded by text", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no e2ee well known", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > no mentions", - "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'account'", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot deny", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return true if visibility customisation returns true", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > requests notification permissions and returns result", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests reduced", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the other member's avatar URL", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > throws when room is not found", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be downloaded", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph with spurious breaks around it in selected range", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a @userMention is followed by other text", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending edit", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should noop when selecting no file", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be enabled for developerMode", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should not render manage integrations section when widgets feature is disabled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not installed WPA", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > renders merged timeline", - "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should fetch cross-signing and device info", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally true", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow 3pid changes when capabilities does not have 3pid_changes", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline where toStartOfTimeline is true", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes font settings through widget URL", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when enabled and room join rule is not knock", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.2 Explicit CRS and accuracy", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = false", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing markdown", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 2 > renders a paragraph with two names", - "test/unit-tests/components/views/location/Marker-test.tsx:: > does not try to use member color without room member", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should add a custom theme", - "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see added from A->B", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 6.0; rv:40.0) Gecko/20100101 Firefox/40.0", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should create keys if they do not exist", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in the room > should render as expected", - "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks participants", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > is created once in SdkContextClass", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a candidate server for the highest power level user in the room", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the set up recovery key when the user clicks on the set up recovery key button", - "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a check icon when in success", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of highlights", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > When MSC3946 support is enabled > handles when room is a space", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should remove the last added selection when backspace is pressed in empty input", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons for roomId", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should render as expected", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window to get enough overlay events", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should disable theme selection when system theme is enabled", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon has no location", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for GB", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (without plain text around)", - "test/unit-tests/components/structures/LargeLoader-test.tsx::LargeLoader > should render the text", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an expired beacon", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should throw when pinned event has no sender", - "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when group call is already connected", - "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding translations", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should replaceEmoticons properly", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment cannot be fetched", - "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3600 to 1h 0m 0s left", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with sidebar tab selected", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should parse regular keyword notifications", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with session manager tab selected", - "test/unit-tests/components/views/beacon/StyledLiveBeaconIcon-test.tsx:: > renders", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > does not try to publish anything if there is no known position after 30s of inactivity", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > should render nothing when room has no error or unsent messages", - "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should handle there being no keyword rules", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > render QR then back", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not disable share button if terms accepted", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with public room filter", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action when update not available", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that My filter for ThreadPanelHeader properly renders Show: My threads", - "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > calls onClick", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as read", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > shows a regular dialog if backups and recovery are working", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > don't show external conference button if now guest spa link is configured", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > without encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentToRoom when parsing is successful", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect unstable as unsupported", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config is fetched from a file and is empty", - "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed properties", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > filters the rooms", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > removes keyword", - "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return n-parent variant", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is required", - "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > should create an encrytped room for 3PID targets", - "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show a spinner before the promise resolves", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should move calls between rooms when remote asserted identity changes", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > disable calls in large rooms by default", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure existing prompt stays even if a new violation with lower lexicographic order detected", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches all chars with words-only off", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the extensible event text when fetching the start event fails", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > If the feature_dynamic_room_predecessors is enabled > Passes the dynamic predecessor flag to getVisibleRooms", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should call onTokenLoginCompleted", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept repeated TLDs (e.g .org.uk)", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Public and Knock rooms in Conferences section", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 6 days ago, but less than 144h", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when initial sync is not complete", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should lookup inputs which look like email addresses (dm)", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads all events", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:com (mostly for (TLD|DOMAIN)+ mixing)", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks with http protocol", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates url preview visibility on encryption state change", + "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > does not try to re-decode audio", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > shouldn't do anything for a local room", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > resumes applying formatting to the rest of a message after a link", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for mobile browsers", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when identity server config has fail error and recognised error string", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room export dialog on button click", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders disabled silenced button when call is forced to silent", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a keyword responsible for triggering a notification", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse creation events", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon when clicked", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > updates notification level when changed", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth disabled", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room with no parent spaces or members when changing join rule to restricted", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > displays advanced section toggle when join rule is public", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for emote event", + "test/unit-tests/utils/numbers-test.ts::numbers > sum > should sum", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to cancel a search", + "test/unit-tests/components/views/elements/QRCode-test.tsx:: > shows a spinner when data is null", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > askToJoin() > returns true", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with negative capacity it should raise an error", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should reload when changing language", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > handles when a room is not indexed", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a MessageEventFactory for an audio message event", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at start of string", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999 as 999", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > normally doesn't open the chat panel", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > can call in large rooms if able to edit widgets", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should show a spinner while the setup is in progress", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > openDialog > should update the options from the opened dialog", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should distribute differently depending on the feature name", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > MSC4108 QR code login > enters qr code login section when show QR code button clicked", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by presence state", + "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > search for users in the identity server", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders encryption info panel without pending verification", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows sending double-slash escaped slash commands correctly", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > should be navigable using arrow keys", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > adds users beacons to state and monitors liveness", "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 3623 to 1h 0m 23s left", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > Can call onNotReady before onReady has been called", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for non-live events (scrollback)", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > renders the theme choice UI", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were unpinned", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should return empty string if passed falsey", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child rooms", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should apply to word range is within if length 0", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > calls getCommand for a message starting with a valid command", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > asks for confirmation when resetting seshat", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > watches device client information setting", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle to all rooms search", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for people -> all transition", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > displays error when device name fails to save", - "test/unit-tests/components/structures/SpaceRoomView-test.tsx::SpaceRoomView > SpaceLanding > should show member list right panel phase on members click on landing", - "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders plain text link correctly", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle large numbers of hidden events quickly", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > should render welcome page after login", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist credentials", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the JoinRuleDialog on click with private join rules", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbResend\u00ab > should should resend the mail and show the tooltip", - "test/unit-tests/editor/parts-test.ts::editor/parts > should not explode on room pills for unknown rooms", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added an alt alias", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render widgets", + "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from stable prefix", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return n-parent variant", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (https)", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > if calling .invite throws something strange, show default error message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when reminder is snoozed", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > filters out non-room specific rules", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > renders poll history option", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > isVisible > calls isRoomInSpace correctly", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should show call buttons in a room with 2 members", + "test/unit-tests/components/views/auth/AuthPage-test.tsx:: > should use configured background url", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggles session selection", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for a disabled feature", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > should render when homeserver does not support cross-signing", + "test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx:: > renders correctly when user has no ignored users", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should create a link with text", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > does not allow forwarding a live beacon that does not have a latestLocation", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should send a message when the content is modified", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip the /me prefix from a message", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow 3pid changes when capabilities does not have 3pid_changes", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout and emit an update if there are no longer apps in the room", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext even if escaped", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if the homeserver provides no TURN servers", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location unstable prefixed type", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should cache sounds between playbacks", + "test/unit-tests/components/views/dialogs/ConfirmUserActionDialog-test.tsx::ConfirmUserActionDialog > renders", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > can change starting calls power level", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle a too-short body", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > renders beacon owner avatar", + "test/unit-tests/utils/permalinks/MatrixSchemePermalinkConstructor-test.ts::MatrixSchemePermalinkConstructor > parsePermalink > should strip ?action=chat from user links", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room IDs with some candidate servers", + "test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx:: > renders as expected", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > only tracks a single failure per event, despite multiple failed decryptions for multiple events", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with geolocation error when geolocation.getCurrentPosition fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should shrink arrays", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should only return valid content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when fetch fails", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during reciprocation", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects when we leave the room", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > shows a dot if the level is activity", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added and removed an alt aliases", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle matrix.org permalinks", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > onNewInvitedRoom > should call onNewInvitedRoom on VoipUserMapper.sharedInstance", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when SSK not cached", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was tracked but not reported in a previous session", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no crypto-setup extensions are provided by a registered module", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should handle serverConfig updates correctly", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > spoiler", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Placeholder > Should not display a placeholder", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'minimise' should send the widget to the right", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test room mention", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return true for Room", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should not raise an error when recovery is valid", + "test/unit-tests/editor/position-test.ts::editor/position > move first position forwards in empty model", + "test/unit-tests/components/views/right_panel/BaseCard-test.tsx:: > should close when clicking X button", + "test/unit-tests/createRoom-test.ts::createRoom > correctly sets up MSC3401 power levels", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should try to start dehydration if dehydration is enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct label", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for PL", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and .events_default are undefined, returns false", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we hide the banner", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when meta+Enter is pressed", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > emits an Update event on marked unread room account data", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending edit", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp low numbers", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return a RoomCreateFactory for a room with dynamic predecessor", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > toggles all rooms in home setting", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when events sender cannot be found in room state", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders collapsed events if events.length = props.threshold", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders banned message", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > feeds incoming event to the widget", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should render the count of results", "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a maximum of 3 candidate servers", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > has() should return false", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by presence state", - "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > opens context menu on create space button click", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns live beacons when user has live beacons", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when an event has no sender", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hosts", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching threepids fails", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts literal HTML topic to HTML", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with 2 members", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > swaps to the replied event room if it is not the current room", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > triggers the secondary action callback", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a feature flag changes notification state", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the thread root id when provided", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Enabled", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for redacted event", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should displays votes on polls not found in local timeline", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/USK not cached", - "test/unit-tests/editor/range-test.ts::editor/range > replace a part with an identical part with start position at end of previous part", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > expands current session details", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with no votes", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS is loaded during pooling", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Even", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > userProfilesStore should return a UserProfilesStore", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept repeated TLDs (e.g .org.uk)", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a read receipt update", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isCreated should return true", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for @room", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not render device verification cta when current session is not verified", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > does not call onClick when clicking device tiles actions", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should throw if the token was persisted with a pickle key but there is no pickle key available now", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is not equal to true", - "test/unit-tests/components/views/location/Marker-test.tsx:: > renders member avatar when roomMember is truthy", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should go home on home shortcut", - "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > calls map zoom in on zoom in click", - "test/unit-tests/Terms-test.tsx::Terms > should not prompt if all policies are signed in account data", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false to space", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if client cannot send state event", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests a red ! if the user has been invited to a room", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > unpins event on pin option click when event is pinned", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rerendering PiP content 1 > should not change the PiP content", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > does not render if user can neither approve nor deny", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale de-DE", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are missing", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room clipboardData files and types are empty", + "test/app-tests/server-config-test.ts::Loading server config > should not throw when both default_server_name and default_server_config is specified and default_server_name isn't resolvable", + "test/unit-tests/favicon-test.ts::Favicon > should clear a badge if called with a zero value", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > renders export format with html selected by default", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > and setting MessageComposerInput.showPollsButton to false > shouldnot display the button", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner whilst QR generating", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForResourceLimitError > should match snapshot for monthly_active_user", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates up to an event from the main timeline", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders dropdown options in menu", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > opens error dialog when beacon creation fails with permission error", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a non beacon event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by recent when they have the same notif state", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalinks with a via argument", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders join and reject action buttons with correct labels", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > allows a community completion to pass through", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog > should close the dialog and show the password input", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > Register works as expected", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns devices older than 90 days as inactive", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can call if you have no friends but can invite friends", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if secret storage is set up", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming state updates to the widget", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the end when all is undefined", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when layout changes", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls kick on deny", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Allowed for a widget", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > updates if ID server is changed", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should display only the current user", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is disabled", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect labs from settings store", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should not find LocalRooms", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick no candidate servers when the room has no members", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for an event without a renderer", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus and clear when receiving an Action.ClearAndFocusSendMessageComposer", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should skip to auto join", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > in empty line", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > adds unread marker when room notification state changes to unread", "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a local room", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when properties are added", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should return the expected resizer distributions", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > pins event on pin option click", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is same day as current day", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with react node", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > rejects invite on secondary button click", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > shows Join button if the user has not joined", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should recover from a server exception", - "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > gives up", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to invited space", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for ClipboardEvent", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should display user profile when searching", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it running into rate limiting > should show the rate limit error message", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Insertions into empty skip list works", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when the content has changed", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > emote", - "test/unit-tests/utils/AnimationUtils-test.ts::lerp > handles negative numbers", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.1 Simple 3-dimensional", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains orphaned rooms", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > calls onClick-callback on additionalButtons", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > displays rooms with nsfw keywords in results when showNsfwPublicRooms is truthy", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a verified device with no metadata", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit is max", - "test/unit-tests/customisations/Media-test.ts::Media > should not download error if server returns one", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Does not remove old room if there is no predecessor in the create event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a phone number is dialled", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hosts", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with no \"others\"", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayRescale > should rescale", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds calls", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight when message's push actions does not have a highlight tweak", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device name", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > updates size limit on change", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light-high-contrast theme if that is selected", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when a deny request fails", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false for the same pointer", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empty object as valid content", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders switches correctly", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > opens the panel in the given room with the correct phase", + "test/unit-tests/utils/export-test.tsx::export > should export images if attachments are enabled", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should render as expected", + "test/unit-tests/components/views/messages/PinnedMessageBadge-test.tsx::PinnedMessageBadge > should render", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on B ordering difference", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a sub-space existing in multiple places in the space tree", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to a custom level", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not suggest users from other server when room has m.federate=false", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > toLocalRoom > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/export-test.tsx::export > maxSize is less than 1mb", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false to space", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > has() should return false for an item not in the cache", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > shows the 'set up recovery' toast if user has not set up 4S", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for unsent messages", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should not persist device language when not available", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should call /logout", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room when changing join rule to knock", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.recent=", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time is up > should not call stop", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with empty content body property", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing enter selects the mention and inserts it into the composer as a link", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > removes toast and emits", + "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should support events with", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when the quick settings are open > should not render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the recovery method removed dialog", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return true if all conditions are met", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should re-check the encryption state and displays the correct panel when the user clicks cancel the reset identity flow", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div and br tags when enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > renders timeout as selected option", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event does not contain geouri", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should render", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > clicking checkbox toggles selection", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon fails consistently", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to joined", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders nothing if poll has no answers", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders kicked message", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should change the system theme when clicked", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a main menu for spaces", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver config has fail error and recognised error string", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.direct=", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should handle an empty hash", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets bundled emoji font as expected > works in conjunction with useSystemFont", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a location event in open street map", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should link to predecessor room", + "test/unit-tests/theme-test.ts::theme > enumerateThemes > should return a list of themes", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights nothing if poll has no votes", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > is created once in SdkContextClass", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from RECONNECTING to SYNCING", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > renders devices in correct order", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > should render dialog", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can neither approve nor deny", "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > removes itself when user stops having live beacons", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple variable substitution", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute modifications", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver fails liveliness check", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not show the autocomplete when room is undefined", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was removed", - "test/unit-tests/utils/numbers-test.ts::numbers > sum > should sum", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu without unpin and delete", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected attributes when avatar url for room is truthy", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders join button", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows an active call with back and leave buttons", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return true for Room", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with home behaviour", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Should call wysiwyg function on button click", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should allow overriding individual fields of sub-objects", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not installed > renders link to install seshat", - "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should render", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > navigates to the space home on click if already active", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > sets position on geolocate event", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should update integrations provisioning on toggle", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing mention of said user", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label File with size", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > clicking on a mention in the composer dispatches the correct action", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should have a heading", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles the client being stopped", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user cannot deny", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor when reinitialised", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > shows Join button if the user has not joined", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with an event on the main timeline and a later one in a thread > an unthreaded receipt for the later threaded event makes the room read", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changes for difference in pointers", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > getDefaultDeviceDisplayName > https://develop.element.io/#/room/!foo:bar & Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 = develop.element.io: Chrome on macOS", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > excluding rooms", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should export if everything is fine", "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > when current device is verified > hides the out-of-sync toast when one of the secrets is missing", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders ignored users tab when feature_mjolnir is enabled", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > translates a basic string and translates with fallback locale", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving more right when all is undefined", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing by default", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 99999999 as 100M", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > restarts publishing a beacon after resetting location publish error", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts a single vote as normal if the poll is ended", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes underscores", - "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 3 mins", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onSend when Enter is pressed", - "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic with emoji to HTML", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption with expected raw error for a visible event", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should upload the file and trigger the upload events", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add an email address", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders a spinner", - "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders without a cancel button if forceVerification true", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders guest access section toggle", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoom > dispatches Action.JoinRoomError and Action.AskToJoin when the join fails", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with default values > should return the default config", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > Displays edited content and new answer IDs if the poll has been edited", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a fallback when there are no locations", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > should not blindly group 3pid invites and treat them as distinct users instead", - "test/unit-tests/models/Call-test.ts::ElementCall > get > finds ongoing calls that are created by the session manager", - "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits no event when a room has no unreads", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send reply to html message", - "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if given a falsey value", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOrFetchProfile > should return a profile from the API and cache it", - "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOf > should return the correct positioning", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should clear the requested state when the button tooltip is hidden", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should ask if user wants to unban user if they have permission", - "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term is a permalink and the primaryEntityId is null", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static GIF", - "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > renders in error mode", - "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > sets the current time in local storage", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should return empty string if passed falsey", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > respects defaultSize prop", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = false", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in English without item limit", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to true", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a verify button when the encryption is not set up", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Even", - "test/unit-tests/actions/handlers/viewUserDeviceSettings-test.ts::viewUserDeviceSettings() > dispatches action to view session manager", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _t > falls back when plural string does not exists at all", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct JSX message when room join rule changed to restricted", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/foo_bar:server.uk", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is disabled if there is an other ongoing call", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders denied request message", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle resolutions after unmounting sanely", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders invite message with invited email", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore.isUserAuthenticatedWithOidc is falsy", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should display a caption when no threads are unread", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a beacon that is not live", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when calling with video = false and an audio device is available > should return the audio stream", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > throws with unavailable error when geolocation is not available", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > ignores liveliness error when checking syntax only", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for one beacon", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should render pin button", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > prepends events into summaries during backward pagination without changing key", + "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise if pooling maximum value is reached", + "test/unit-tests/Rooms-test.ts::setDMRoom > when trying to add a DM, that already exists > should not update the account data", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog with submit debug logs option when non-networking error occurs", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should unpin the event if already pinned", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should spot a signed device", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > removes toast when remove function is called", + "test/unit-tests/components/views/settings/SettingsSubheader-test.tsx:: > should display a check icon when in success", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to subspace", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for redacted event", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a function > returns result from incompatibleValue function", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns null when setting is not incompatible", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should default to private room", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when removed an alt alias", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > succeeds to approve a request", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not renders user timezone if timezone is invalid", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves capabilities via module api", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > pusher settings > can remove email pushers", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if there is no end event", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > should allow filtering", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no homeserver support", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should create a local room and dispatch a view room event", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> home transition", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when destroy is called", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should not display the section when the user can not set the value", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > when there are cached values and membership updates > and membership events with the same values appear > should not invalidate the cache", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not disable share button if terms accepted", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /discardsession > isEnabled > should return true for Room", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not show jump to date error if we already switched to another room", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders correctly when selected", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Verified", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > should show the email input and mention the homeserver", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should add a custom theme", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name from a standard room ID", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > navigates to location picker when live share is enabled in settings store", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped markdown", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should override hsUrl in creds when login response wellKnown differs from config", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should return usage if no args", + "test/unit-tests/Rooms-test.ts::setDMRoom > when logged in as a guest and marking a room as DM > should not update the account data", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > if rooms should not be encrypted > should create an unencrypted room", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 4 pinned event", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders loading state correctly", + "test/app-tests/server-config-test.ts::Loading server config > should use the default_server_name when resolveable", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if label is unset", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows an error if there are no via servers", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes non-consecutive with varying length backticks in between text", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should send message on save button click", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > userProfilesStore should raise an error without a client", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has changed category", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should handle up/down arrow keys work when handleUpDown=true", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Should not display a warning if the user was verified and is still verified", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when there is no snooze in storage", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns false when snooze timestamp in storage is over a week ago", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > canSetValue should return true", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays pre-prepared playback with correct playback phase", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders selected option", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a non-DM room with one third-party invite", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on toggle click", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should not allow to unpinall", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test broken mentions", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns beacon ids for room when user has live beacons for roomId", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > should clear the error on reconnect", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag to if existing event is false", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should encrypt the file if the room is encrypted", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.suggested=", "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks outside of code blocks", - "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected with detail content", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after component is loaded", - "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should render HH:MM", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should return the app avatar URL", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo timeout error correctly", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking back button from location picker screen goes back to share screen", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > room invite gets added to relevant space filters", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should disable share button until a source is selected", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show banner on hover", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders nothing if poll has no answers", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > values() should return an empty iterator", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > renders expected fields", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > renders addresses section", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from unverified devices", - "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > StatelessNotificationBadge > hides the bold icon when the settings is set", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a command inserts the command", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing escape closes the autocomplete", - "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 12 hour mode", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a beacon that is not live", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only functional room members > should return an empty list", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match advanced ctrlOrMeta key combo", - "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should import exported keys on submit", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for PNG files which cannot be parsed but successfully thumbnail", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > does not render if the room join rule is not knock", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should log and return to welcome page", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to knock", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when a deny request fails", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should start a DM if the profile is available", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders invite message", - "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > does not show filter container when disabled by UIComponent customisations", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle code blocks", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > showPeopleInSpace setting > emits filter changed event when setting is false and space changes to a meta space", - "test/unit-tests/audio/Playback-test.ts::Playback > initialises correctly", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should render the count of results", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should cache the error and result", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores end poll events from unauthorised users", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should throw error if unregistering unknown token", - "test/unit-tests/components/views/settings/tabs/user/MjolnirUserSettingsTab-test.tsx:: > renders correctly when user has no ignored users", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed message events", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > getValueOverride() > returns forced value when setting is incompatible", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during protocol negotiation", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders a verified device", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is larger than max", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > uploadFile > uploads a file", - "test/unit-tests/hooks/useUserDirectory-test.tsx::useUserDirectory > search for users in the identity server", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > cancelUpload > should cancel in-flight upload", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known does not promote encryption > should return false for a DM room with one third-party invite", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render pinned event", - "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats with seconds", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to the beginning", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding actions", + "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should display room member list when payload has a falsy event", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string with duplicate character", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows disabled when call member power level is 0", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until end of timeline is reached while within time limit", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should fallback to normal login when client registration fails", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is unverified", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > cancels ignoring the user", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for null", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > renders share type switch with own and pin drop options", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added multiple alt aliases", + "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns legacy uri when m.location content not found", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist credentials", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls kick on deny", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after two minutes > should not remove the last widget", + "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly parses model", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning resolves", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights multiple winning votes", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to create pickle key", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > declining the unknown user dialog > should only invite existing users", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct < 0", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for state event", + "test/unit-tests/editor/history-test.ts::editor/history > keystroke that didn't add a step can undo", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > enables encryption after confirmation", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should enable spell check", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > pinning > renders pins options", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and no room is viewed > should not render the \u00bbDeveloper tools\u00ab button", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > remove non-editable part with delete", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should open or close the message pinning list", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > opens event index management dialog", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > works if a room is specified", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sending", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > ignores other account data events", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with accuracy and altitude", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if the event is redacted", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static WEBP", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > versions > calls install update", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render section when RoomHistorySettings feature is disabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for DE", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 0 seconds formats to 0s", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > removes the roomId on ViewHomePage", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:com (mostly for (TLD|DOMAIN)+ mixing)", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account is managed externally", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects when we leave the room", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Inactive", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show error view if failed to look up room alias", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows the correct member count", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.conferences=", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > saves an empty session display name successfully", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should create new matrix client with credentials", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle both displayname and avatar changing in one event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if clipboard data is null", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should translate _t strings", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > creates a pickle key with userId and deviceId", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > with dynamic predecessor support > should return undefined for a room without predecessor", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (explicit)", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should create oidc client correctly", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open topic dialog when not clicking a link", + "test/unit-tests/components/structures/LargeLoader-test.tsx::LargeLoader > should render the text", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when data types has text/html but data can not be parsed", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > toggles out of editing mode when device name is saved successfully", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset back to custom value when custom input is blurred blank", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > room pill turns message into html", + "test/unit-tests/components/views/messages/MessageEvent-test.tsx::MessageEvent > when an image with a caption is sent > should render a TextualBody and an ImageBody", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with no candidate servers", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > converts legacy location events to pin drop shares", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when all orders are undefined", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > should request a new token if the old one fails", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no events when I click in an ended poll", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders loading state", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with no votes", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle undecryptable pre-join messages", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinnable > should return false for a redacted event", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow removing email addresses", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for local room ID", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should have a waveform, a seek bar, and clock", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha when they have the same notif state", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room by the 'all rooms' fallback", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline styling", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > updateDelayedEvent > fails to update delayed events", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders additionalButtons", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms based on thread replies too", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should pass appropriate permalink creator for all rooms search", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device with metadata", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > should show some emojis once keys are exchanged", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should render", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while signing in", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should select other homeserver field on open", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns the value for an enabled feature", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with no responses", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is a float in range", + "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should add the widget successfully", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes around other markdown", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders custom user identifiers in the header", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return an empty list for an empty input", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val < 0", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists state correctly without replyToEvent onbeforeunload", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles and sets settings correctly", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > does not parse room alias with too many separators", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends only one vote event when I click several times", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > renders container", + "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return false when current user membership is not joined", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop when it is false", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should not jump to date if we already switched to another room", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > unsubscribes from geolocate errors on destroy", + "test/unit-tests/createRoom-test.ts::createRoom > sets up Element video rooms correctly", + "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > fetches the related poll start event and displays a poll tile", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should gracefully handle invalid MXIDs", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > should show CreateSecretStorageDialog if forceReset=true", + "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > updates value on option selection", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders disabled invite button when current user is a member but does not have rights to invite", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > inserts toast according to priority", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should close editing", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is defined", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested quotations", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > disables calling if there's a jitsi call", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving right", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when enabling feature > should prompt ask to join", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when the text is a plain text emoiticon", + "test/unit-tests/settings/controllers/FontSizeController-test.ts::FontSizeController > dispatches a font size action on change", + "test/unit-tests/Rooms-test.ts::setDMRoom > when the current content is undefined > should update the account data accordingly", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > searching for rooms > should find Rooms", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders avatar with specified alt text", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a private space > does not render addresses section", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return true for default level 50", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are supported > should return false for LocalRoom", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is not ended if poll is fetching responses", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render permission request", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no sender", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > opens interactive auth dialog when delete fails with 401", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call is connecting", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no room", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show SSO button if that flow is available", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders joining message", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 mixed: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return undefined when no claims in localStorage", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout IRC correctly", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses the create event if there is no m.predecessor", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.direct=", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > disables submit button until geolocation completes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should prevent out of order results", + "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on number enums", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > without dynamic predecessor support > should return undefined for a room with dynamic predecessor", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > If the predecessor room is not found > Shows a tile if there are via servers", + "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders only child if presence is disabled", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > opens map dialog on click", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Bubble correctly", "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=online", - "test/unit-tests/integrations/IntegrationManagers-test.ts::IntegrationManagers > getOrderedManagers > should return integration managers in alphabetical order", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > @room pill", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a Room", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when an approval fails", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should display an error when homeserver doesn't offer any supported login flows", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > saves client information after setting is enabled", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if the homeserver provides no TURN servers", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should have light theme selected", - "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > type in empty line", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders emoji and upload buttons in wide mode", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > updates when roomId prop changes", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should render", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > shows the session ID and key", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns red if a thread in the room has a highlight notification", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader properly opens a context menu when clicked on the button", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return true for Room", + "test/unit-tests/components/views/auth/AuthFooter-test.tsx:: > should match snapshot", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for event without msgtype", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept @foo:bar.com", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > generates big emoji for emoji made of multiple characters", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > adds a new keyword with same actions as existing rules when keywords rule is off", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feeds incoming to-device messages to the widget", + "test/unit-tests/editor/range-test.ts::editor/range > range trim just whitespace", "test/unit-tests/components/views/elements/ExternalLink-test.tsx:: > renders link correctly", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.suggested=", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should change the system theme when clicked", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > renders when the last message is an undecryptable thread root", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when beacon has no related locations", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > adding children to space > if user cannot add children to space, MainMenu adding buttons are hidden", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > should return false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should display the tooltip on mouse over when not disabled", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when the timezone is changed", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > translated correctly when plural string exists for count", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can call when you're two in the room", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > parses a typical pushrules setup correctly", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > cannot add more than three widgets to top container", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias changed", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should close the menu", + "test/unit-tests/utils/objects-test.ts::objects > objectWithOnly > should exclusively use the given properties", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > sends markdown messages correctly", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > should not blindly group 3pid invites and treat them as distinct users instead", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return token from localStorage", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > should dump debug logs on Action.DumpDebugLogs", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test user mentions", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > stop should return a copy of the data buffer", + "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should render a single upload correctly", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove pins when maximising (other widget)", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/apng", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length < B length", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 0 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds no votes if there are none", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > don't sort the order of users sent by the server", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to restricted", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > clears error message for notification rule on retry", + "test/unit-tests/components/views/settings/devices/DeviceExpandDetailsButton-test.tsx:: > renders when not expanded", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite comes in", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns falsy when no users have changed power level", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > does not emit filter changed event on store update when nothing changed", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders the room header", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should make things rainbowy", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a high-contrast theme if system prefers it", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a loading message while poll history is fetched", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at end of string", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when invited users can see encrypted messages", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of first line which is empty", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 1", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should move a widget within a container", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for a redacted event", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config succeeds but is empty", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place and key in same place in insertion order", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > does not render reply button on non-actionable event", + "test/unit-tests/components/structures/RightPanel-test.tsx::RightPanel > renders info from only one room during room changes", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect user agent", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity needs approval", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should return usage if no args", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated GIF", "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isNew should return false", - "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when calculatedValue is falsy", - "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > disables guest access toggle when setting guest access is not allowed", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :+1", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > converts legacy location events to pin drop shares", - "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > correctly renders toast without a call", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound url if no name", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with negative capacity it should raise an error", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders invite message with invited email", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show multiple SSO buttons if multiple identity_providers are available", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > cancels changes", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unsupported_protocol", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > updates include attachments on change", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a highlight notification in the TAC", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add mentions that were added in the edit", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with an empty array, it should return true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isError should return false", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device icon when no device type given", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > updates on new responses", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message and duration if the call was ended", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for text content with an email address", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is not in the current space", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :cop", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > applies interactive class when tile has click handler", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > returns an empty object when no event exists for the device", + "test/unit-tests/models/Call-test.ts::JitsiCall > get > ignores terminated calls", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing closing square bracket", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage key in account false", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > starts update check", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to non-narrow event occurred in UIStore > should show the attachment button", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a phone number is dialled", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unsupported_protocol", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for room member event", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on space keyup", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given 2 React children", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > does not dispatch when notifications are silenced", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > mobile registration > should render welcome screen if mobile registration is not enabled in settings", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for self-trust=true", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage if given an invalid power level value", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1066-10-14", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user has been invited to a channel", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for a DM", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for redacted event", + "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should a pop-up for thread event", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > marks the room as read even if the receipt failed", "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > catches an error from localstorage and returns false", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > disables all rooms in home setting when home space is disabled", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values", - "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been denied", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > should return a toast once one is displayed", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > does not display filter description when filter is falsy", - "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 0 seconds formats to 0s", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return full time & date string otherwise", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to deny a request", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with sidebar tab selected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns an empty map when no member can be found", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the current user's identity is approved", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should consider servers not disallowed by ACLs", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse room permalink via arguments", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > custom user agent = Element Desktop: Unknown", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > clears unread marker when room notification state changes to read", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join enabled > does render the RoomKnocksBar", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room on submit", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should send state=disable to API /widgets/set_assets_state", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling, but * becomes _ and __ becomes **", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should display the modern layout", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of highlights", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should allow pasting of text values", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > does not race with lazy loading", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does not show context menu when right-clicking", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 12 hr time format", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > trims whitespace, encloses the fonts by double quotes, and sets them as the system font", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should close on cancel", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > maintains samples for Even", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders ignored users tab when feature_mjolnir is enabled", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches words only by default", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > does allow submitting when there are options and a question", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite is accepted", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > url preview > should listen to showUrlPreview change", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 144 hours ago", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage estimate", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCards > overwrites history", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to true, it should short-circuit and return true", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should handle multiple parameters", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > appends the year for events created in previous years", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return empty set on clients with no crypto", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show member list right panel phase on Action.ViewUser without `payload.member`", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct default message", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > may send notifications", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns none if the thread hasn't a notification anymore", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays pending warnings when encryption is enabled", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for removed room rules", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > getLastTs > returns the last ts", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > treats any invalid answer as a spoiled ballot", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > preserves non-persisted widget on container move", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render a room with a highlight notification in the TAC", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should return to default view if adding is cancelled", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should disable the checkbox", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing backticks", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.archived=", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting an at-room completion inserts @room", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > calls", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > forRoom > constructs a link given a room ID and via servers", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a feature flag changes notification state", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should maintain pointers", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the local notifications settings status when clicked", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > goes to room of latest beacon with stopping error when clicked", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to rule value when no synced rule exist for the user", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > renders input with default value of false", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 2", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > getRoomIds should only return the valid items", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > > shows ask to join if feature is enabled", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested formatting", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should invoke the callback on a transition from PREPARED to SYNCING", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with non-string body", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > fails to approve a request", + "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > renders button", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple tag substitution and translates with fallback locale", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > Signs out of current device", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses hs url hostname when serverName is falsy in args and config", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp high numbers", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > pushCard > opens the panel in the given room with the correct phase", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should return false when no session data is found in local storage", - "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should show error when an error occurs", - "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted local room > should show the expected texts", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when Shift+Enter is pressed", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device without metadata", - "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new DM room > should update the account data accordingly", - "test/unit-tests/utils/export-test.tsx::export > should export images if attachments are enabled", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > resumes applying formatting to the rest of a message after a link", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without msgtype", - "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > @room pill turns message into html", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should create new matrix client with credentials", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure lexicographic order for prompt", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > on location updates > updates last updated time on location updated", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was tracked but not reported in a previous session", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > ignores thread updates for unknown threads", - "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > an unthreaded receipt for the event makes the room read", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > renders export format with html selected by default", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > sends an unthreaded read receipt when the Mark All Threads Read button is clicked", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status sent", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > stop should return a copy of the data buffer", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is defined", - "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/apng", - "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 2 when notificationCountType is 2", - "test/unit-tests/UserActivity-test.ts::UserActivity > should return the same shared instance", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a power level combobox", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events and .events_default are undefined, returns false", - "test/unit-tests/utils/arrays-test.ts::arrays > ArrayUtil > should group appropriately", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when roomId is falsy", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should display an error when recovery key is invalid", + "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > confirming the unknown user dialog > should invite all users", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have hover style when hovered and enabled", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment srcHttp is falsy", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets enabled (default) > should show call buttons in a room with 2 members", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > status > updates component when event status changes", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear in code blocks", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses room alias with dots in name", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = true", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > handles invalid bounds", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > returns an empty string when keyChar is falsy", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > when an identity server is configured > and some 3-rd party members can be resolved > should return the resolved members", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for more users if percentage grows", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render + if last", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > does not try to center when no center uri provided", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the socials if disabled", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FF:h", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > When settings require Ctrl+Enter to send > Should send a message when Ctrl+Enter is pressed", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > preserves nested quotes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should make things rainbowy", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed, added, and removed properties", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user added", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > retry button retries stop sharing", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > does not update bounds or center on changing beacons", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the read-marker that fall in summarised events after the summary", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage persisted", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that ThreadPanelHeader has the correct option selected in the context menu", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > logs error and resets state when updating guest access fails", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > renders add room button and clicks explore public rooms", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return value from crypto-setup-extensions provided by a registered module", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing at start of non-editable part prepends", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes ICE fallback preference through widget URL", + "test/unit-tests/Notifier-test.ts::Notifier > _playAudioNotification > does not dispatch when notifications are silenced", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show edit button when we cannot edit", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the JoinRuleDialog on click with private join rules", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was not fetched", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > removes a room", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > should return JSONEventFactory for a no-op m.room.power_levels event", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should open settings to the reset flow when 'forgot recovery key' clicked", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > repeatedly updates room state while connected", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest thread event was sent by the current user", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > removes avatar", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if #roomMention is surrounded by text", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > publishes last known position after 30s of inactivity", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with inactive notice when last activity was more than 90 days ago", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last week", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > you can't call if you're alone", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should start a DM when clicking a person", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should call Navigator::setAppBadge", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > hides setup encryption toast when cross signing and secret storage are ready", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should not show the attachment button", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > clear all notifications > clears all notifications", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is undefined", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should make correct request to complete authorization", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist a refreshToken when present", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify MXIDs", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down in list", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders no votes if none were made", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > should redirect to verification if set to phase MemberInfo for a user with a pending verification", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQs", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > displays error when playback decoding fails", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if there is non migrated legacy crypto store", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows block button when member userId does not match client userId", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with local, non-local and invalid votes", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a user permalink", + "test/unit-tests/favicon-test.ts::Favicon > should create a link element if one doesn't yet exist", + "test/unit-tests/vector/init-test.ts::showError > should match snapshot", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave() and shows an error dialog", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped backslashes", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be enabled", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when the timezone is changed", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends markdown messages correctly", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the import e2e keys dialog on click", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders loading beacon UI for a beacon that has not started yet", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > Signs out of current device from kebab menu", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is any other error, it should not report ready, displayname = MXID and avatar = null", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when email 3pids exist", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple invites", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > moveAppToContainer > should not move if there is no room", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with react element description", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from CATCHUP to ERROR", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not open the tooltip when hovering a link", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state false > should change to true when setting true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should disable buttons when isUpdating=true", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (http)", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > does not show public room label for non public room", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should not leak javascript from room names or topics", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > dispatches on check updates action when update not available", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by function", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > pasting text does not trigger auto-complete", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for favourites -> all transition", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should start the DM directly", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if the panel is open but in another room", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error with fallback message identity server config has fail error", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders null when event does not have an extensible poll start event", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > device details > renders expanded devices with device details", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > does not mistake characters in text presentation mode for emoji", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 2 (device not verified by its owner)", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 1", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > should not display the button", + "test/unit-tests/Rooms-test.ts::setDMRoom > when adding a new room to an existing DM relation > should update the account data accordingly", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores events for other timelines", + "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > should render", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a room outside of a space that was being viewed", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains height", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > creates local notifications event after a non-cached sync", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOnlyKnownProfile should return undefined if the profile was not fetched", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should throw if the token was persisted with a pickle key but there is no pickle key available now", + "test/unit-tests/components/views/location/MapError-test.tsx:: > applies class when isMinimised is truthy", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to plaintext messages", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo error permissiondenied correctly", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns a pretty list without hasMore", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up wysiwyg drafts", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple tag substitution", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > orphan rooms are added to Notification States for only the Home Space", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > renders user info", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request fails", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should call onSelectionChange() when an item is removed from selection", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when enabled and room join rule is not knock", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when calling with non-group call event", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to CAS login", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not call for suggestions with a null suggestion prop", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > closes and displays error when geolocation errors", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > popCard > removes the most recent card", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders without description", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should strip tag from initial content", + "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > returns undefined if neither prefix is present", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 3 > renders a paragraph with three names", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc3245.voice content", "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > MemberListView > Memberlist is re-rendered on unreachable presence event", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbRightPanel.phases\u00ab", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.third_party_invite", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when one message was pinned, and another unpinned", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 48 minutes, 59 seconds formats to 48m 59s", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > throws when roomId is falsy", "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when no beacons have locations", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > renders device name", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders a verified device", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after two minutes > should not remove the last widget", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and updating the server config > should show the new homeserver server name", - "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with react description", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > selecting own location share type advances to location picker", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render a single pinned event", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with room name", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip the /me prefix from a message", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return false from VoiceRecording", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of an unknown screen", - "test/unit-tests/Terms-test.tsx::Terms > should prompt for only services with un-agreed policies", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns false for space", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > strips /me from messages and marks them as m.emote accordingly", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the northern hemisphere, west of meridian", - "test/unit-tests/utils/export-test.tsx::export > checks if the icons' html corresponds to export regex", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes asterisks", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100", - "test/unit-tests/stores/room-list/previews/PollStartEventPreview-test.ts::PollStartEventPreview > shows the sender and question for a poll created by someone else", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders the default context menu", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a number enum", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not try to remove client info event that are already empty", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to connect if the widget returns an error", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with preferences tab selected", - "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Unreachable' for presence=unreachable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should clear textbox content when clear is called", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single non-empty item are still markdown", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > does nothing if the room has no phase to open to", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > gets TURN servers", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in the middle of a word", - "test/unit-tests/SdkConfig-test.ts::SdkConfig > with custom values > should return the custom config", - "test/unit-tests/theme-test.ts::theme > setTheme > applies a custom Compound theme", - "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > shows a preview with us as the sender", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.suggested=", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with many \"others\"", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > allows overriding native context menus", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > saves an empty session display name successfully", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should toggle a selected item when a suggestion is clicked", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FT:h", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag if event doesn't exist", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not focus when disabled", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when one of the predicate return true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle both displayname and avatar changing in one event", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should close on cancel", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for words", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return the error if there was one", - "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > renders the room options context menu when UIComponent customisations enable room options", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with ranges other than 0-100 when pct < 0", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > shows pin option when pinning feature is enabled", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables OK button when labs flag is toggled to enabled", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > toggles all rooms in home setting", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a blank poll", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room removed", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add fields related to edition", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should allow setting an identity server", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a resize to narrow event occurred in UIStore > should close the menu", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=busy", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu while devices are loading", "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return true + invite event for a DM room with one third-party invite", - "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > calls onChange when a file is uploaded", - "test/unit-tests/editor/model-test.ts::editor/model > emojis > regional emojis should be separated to prevent them to be converted to flag", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if you have no friends and cannot invite friends", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added multiple alt aliases", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a space", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should copy the layout to the room", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > cannot be disabled", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does not show context menu when right-clicking", - "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should support pasting one username that is not a mx id or email", - "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false if visibility customisation returns false", - "test/unit-tests/favicon-test.ts::Favicon > should create a link element if one doesn't yet exist", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should warn about self demotion", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the room summary", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should set the visibility to private by default", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > invites anyway", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val > 100", + "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should render", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons for roomId", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > user pill turns message into html", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK/SSK not cached", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = false", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > when encryption is force disabled by e2ee well-known config > displays unencrypted rooms with toggle disabled", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > extends device with client information when available", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > any markdown turns message into html", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/USK not cached", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows no shield for a verified event", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > flushes rageshake before quitting", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the message composer", "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return true for Room", - "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > calls onChange handler on selection", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > should return the profile from the API and cache it", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready false", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > returns early when suggestion is null", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should collect modernizer", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should show the device settings", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape single quote in placeholder", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > renders the theme choice UI", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to max", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for 401", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when discovery result is falsy", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Replaces the old room when a newer one joins", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID without protocol", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDateNoTime > should match given locale en-GB", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles rules with no conditions", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableIntersection > should return an empty array on no matches", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = true", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > selecting own location share type advances to location picker", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > (filtering warnings about no predecessor) > Shows an empty div if there is no predecessor", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders own beacon status when user is live sharing", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return the error if there was one", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a JSONEventFactory for a room create event without predecessor", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should not create a pickle key when credentials do not include deviceId", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert user pill", + "test/unit-tests/components/views/dialogs/FeedbackDialog-test.tsx::FeedbackDialog > should respect feedback config", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > renders a no past polls message when there are no past polls in the room", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape backslash in placeholder", + "test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx::AppearanceUserSettingsTab > should render", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > destroys non-persisted right panel widget on room change", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp high numbers", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should recalculate all rooms when the client is ready", + "test/unit-tests/hooks/room/useRoomThreadNotifications-test.tsx::useRoomThreadNotifications > returns grey if a thread in the room has a normal notification", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > handles complex transformations", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph with spurious breaks around it in selected range", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should have a Matrix-branded destination file name", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new room", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > allow typing e-mail addresses without splitting at the @", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving a reply_to_event action", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to expand a reason", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Timeline Layout > should be the default", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > rings when incoming call state is ringing and notifications set to ring", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > without filter", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room is undefined", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is falsy", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > should render notificationState if one is provided", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should fire FocusMessageSearch on Ctrl+F when enabled", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should fall back to WebPlatform::setNotificationCount if no Navigator::setAppBadge", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > feed event > should not feed incoming event to the widget if seen already", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks unescaped", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when the key is cached", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > should proceed if server is not accessible", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should set the content type to MsgType.Emote when /me prefix is used", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should strip v prefix from versions before comparing", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > Composer Layout > should have a waveform, no seek bar, and clock", + "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return valid content", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should revoke tokens when user is authenticated with oidc", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to invited space", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message with a generic title", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should warn when trying to create a room with an invalid form", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the spotlight when the search button is clicked", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is not 1", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for invites", "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V1 font size to V3", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should call Navigator::setAppBadge", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user knock has been denied", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is falsy", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a non-standard pickle key > should create and start new matrix client with credentials", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 6 (Not encrypted)", - "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns 0 when expiry has already passed", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > updates thread previews", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with reference relation", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to world_readable", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in the middle of a word", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has been started and there is a profile, it should return the profile display name and avatar", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should warn and do post-logout cleanup anyway when logout fails", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > updates marker position on change", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for an MXID permalink", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should have focus", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::buildQuery > combines the keyChar and text of the suggestion in the query", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show edit button when we cannot edit", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends ring on create in a DM (two participants) room", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /holdcall > isEnabled > should return false for LocalRoom", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should dismiss the device", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display Close list button if the message pinning list is displayed", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > calls position handler with position", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > persists to session history upon sending", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should set fresh login flag in session storage", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats with seconds", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should not add A-Element-R label if not rust crypto", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should not automatically close when a modal is opened under the existing one", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly if its already formatted", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > clicking retry should set the room state to new dispatch a local room event", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > does not render when disabled and room join rule is knock", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is connected", + "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should fall back to camelCase keys when needed", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (regular mode) > should show a 'Verify by emoji' button", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when using itemLimit", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders device without metadata", + "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly generates change calls", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for ES", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return false for LocalRoom", + "test/unit-tests/favicon-test.ts::Favicon > should draw a badge if called with a non-zero value", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should include rooms in space home [Chrome]", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes underscores", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > user mentions", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by alias and join", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name and port when included", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when no clientId is found in storage", + "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > renders", + "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > renders a poll with one winning answer", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false when the event was sent by the current user", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims extracted from id_token in localStorage", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should return usage if no args", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 3 (unknown or deleted device)", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > does not try to fit map bounds when no bounds provided", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should warn about self demotion", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should prompt user if upload failed with UIA", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > sets export format on radio button click", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > installs update", + "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw upon non-20x code", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_already_signed_in", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > counts votes that arrived after an unauthorised poll end event", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should disable Match system theme", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is 0", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > doesn't allow submitting until there are options", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return true for Room", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add an email address", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render PlainTextComposer when isRichTextEnabled is at false", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new phone number", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should throw UploadCanceledError upon aborting the upload", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders activeTabId tab as active when valid", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with public room filter", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > get() should return undefined for an item not in the cahce", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 2 > renders a paragraph with two names", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called for a replaced event with new content should return the new content body", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > getRoomIds should return the valid room Ids", "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > returns undefined when the command is not successful", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders space settings option when user has rights", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to top level space", - "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should return accessToken, configured homeserver and identityServer", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders an error message", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with dots in name", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should update when the e2e status when the user verification changed", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > should return undefined if no room shared with the user", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 23h formats to 23h", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > spellcheck > indicates support for spellcheck settings", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string if date is within same day", + "test/unit-tests/utils/pillify-test.tsx::pillify > should do nothing for empty element", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element additions", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > kills event listeners on unmount", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change only the level of someone with a lower level", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should warn when space is not public", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > calls onFilterChange handler correctly when setting filter to All", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and entering a non-email value > should show a message about the wrong format", + "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > should support setting a user timezone", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be downloaded", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends encrypted messages", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept hyphens in name #foo-bar:server.com", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are some functional room members > should only return the non-functional members", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse event permalink via arguments", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with multiple previously pinned messages", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.call.answer", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to invite another to a space [Chrome]", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should not clear storage", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes font settings through widget URL", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 1 and translates with fallback locale", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks late decryptions vs. undecryptable", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > renders a heading and a paragraph with name and user ID", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Denied for a widget", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfile should return undefined if the profile was not fetched", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should render HH:MM", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be disabled by default", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Odd", + "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static PNG", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should group hidden event reactions into an event list summary", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format link in front of new line part", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > multiple lines with paragraphs", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic to HTML", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Negative latitude", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a loader while responses are still loading", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should show error when an error occurs", + "test/unit-tests/components/views/voip/DialPad-test.tsx::when hasDial is true, displays all expected numbers and letters", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for M_USER_DEACTIVATED", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length < B length", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should not collect cross-signing pub key if not set", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > strips /me from messages and marks them as m.emote accordingly", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > removes keyword", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > has no notifications with no rooms", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > does not render create space button when UIComponent.CreateSpaces component should not be shown", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > renders", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > public room > shows a globe", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget without timestamp > should not remove the last widget", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > clean up drafts > should clean up drafts", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > returns false if either argument is falsy", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders room not found error", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single empty item are not considered markdown", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > should hide unpinnable events found in local timeline", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is verified", "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > resets keys in the right order when resetting secret storage and cross-signing", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes multiple devices", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > opens interactive auth dialog when delete fails with 401", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should render if wrapped in room context", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns false when setting value is not true", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > and rendering PiP content 2 > should update the PiP content", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > should automatically close when a modal is opened", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute additions", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not add other users beacons to beacon state", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed for the same pointer", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks in code blocks", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > expecting errors > throws if crypto is unavailable", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to request to join", - "test/unit-tests/components/views/dialogs/security/CreateSecretStorageDialog-test.tsx::CreateSecretStorageDialog > when there is an error fetching the backup version > shows an error", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > updates beacon to live:false when it is unexpired", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should display a notification for a voice message", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > setActiveRoomInSpace > should work with Home as all rooms space", + "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > Should successfully complete a password flow", + "test/unit-tests/utils/DateUtils-test.ts::formatLocalDateShort() > formats date correctly by locale", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for a single target with a room", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > should return true", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > and a new event appears > should emit the new event", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-relations", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when one message was pinned, and another unpinned", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId(null)", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on desktop", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without content body property", + "test/unit-tests/stores/ActiveWidgetStore-test.ts::ActiveWidgetStore > tracks docked and live tiles correctly", + "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > when sendReadReceipts setting is disabled > should send a private read receipt", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > destroys and removes beacons when current user leaves room", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > with a refresh token > should persist credentials", + "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return false if bug_report_endpoint_url is falsey", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > for a virtual room > should return return false", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > renders beacon info", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with null if selection cursor is not inside a text node", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should disconnect all calls", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Re-sort works when sorter is swapped", + "test/unit-tests/components/views/voip/CallView-test.tsx::CallView > accepts an accessibility role", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (Error) occurs", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles plurals when count is 0 and translates with fallback locale", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > should treat tags not in allowlist as plaintext", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > doesn't cancel my local vote if someone else votes", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record normal-quality voice if voice processing is enabled", + "test/unit-tests/components/views/rooms/NotificationBadge/NotificationBadge-test.tsx::NotificationBadge > still shows an empty badge if hideIfDot us true", "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites even if they are also shown in a space", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > people space does contain people even if they are also shown in a space", - "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > supports events with missing timestamps", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = false > should not display the button", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should parse an MXID (http)", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomavatar > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders unverified devices section when user has unverified devices", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > simple message renders as expected", - "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > calls the right callbacks", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should ignore when formatted_body is not filled", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room in target space is the current viewed and in both spaces", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for own event", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > re-renders on room join rule changes", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with people filter", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should start matrix client", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is true", - "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > shows an error if the event has no sender", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is not the latest beacon for a user", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in an empty composer", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should apply new styles after mounted to animate", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > overwritelogin > should replace the current login with a new one", - "test/unit-tests/components/views/elements/SpellCheckLanguagesDropdown-test.tsx:: > renders as expected", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return false for a non pinnable event type", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is defined", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.0.0 (Linux; Android 7.0; SM-G610M Build/NRD90M; Flavour GPlay; MatrixAndroidSdk2 1.0)", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not pushrules", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should allow changing when neither server nor well known force encryption", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when homeserver config has fail error and recognised error string", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdTokenClaims() > should return claims from localStorage", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has knock style", - "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 1", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list starting later", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to collapse a reason", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with no args", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses the create event if there is no m.predecessor", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting all items should work", - "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > enables play button when playback is finished decoding", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > line breaks", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > displays alert if an identity server needs terms accepting", - "test/unit-tests/components/views/dialogs/InteractiveAuthDialog-test.tsx::InteractiveAuthDialog > SSO flow > should complete an sso flow", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Exact match in recently used takes the lead", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should show both call buttons in rooms smaller than 3 members", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 23 unreads, getHiddenHighlightCount should return 23", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when Recovery key is filled by user", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should moving down in list", - "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished with sas when Interactively verify by emoji is clicked", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering different passwords > should show an info about that", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks client information", - "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcIdToken() > should return undefined when no token in localStorage", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > inline code", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should remap error codes correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready true", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > should go to setup e2e screen", - "test/unit-tests/languageHandler-test.tsx::languageHandler > getAllLanguagesWithLabels > should handle unknown language sanely", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /myroomnick > isEnabled > should return false for LocalRoom", - "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for added room rules", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped markdown", - "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f emoji", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > startRecording() > creates and adds recording to state", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when the text is a plain text emoiticon", - "test/unit-tests/editor/position-test.ts::editor/position > move forwards within one part", - "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected without detail content", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for mixed content error", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > resets the model correctly", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have active class when reversed", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATED > isNew should return false", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders the correct labels for banned and unbanned members", - "test/unit-tests/components/views/rooms/SearchResultTile-test.tsx::SearchResultTile > Sets up appropriate callEventGrouper for m.call. events", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain if passphrases don't match", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttodm > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created in the current year", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should warn about self demotion", - "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A < keys for B", - "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is shown", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons", - "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should persist OIDCState.Allowed for a widget", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > shows a modal before ignoring the user", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an audio and video device is available > should return the audio/video stream", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > sidebar > opens sidebar on view list button click", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > does nothing when getRelationsForEvent is falsy", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in the same room", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders export type with timeline selected by default", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends unencrypted messages", - "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and confirming the login > should dismiss the device", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should enable Match system theme", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClientWellKnown emits > does not update map style when style url is truthy", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > the event_id if SendMessageParams has relation and rel_type matches THREAD_RELATION_TYPE.name", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=unavailable/unreachable", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > updates individual keywords content rules when keywords rule is toggled", - "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > addEncryptedLiveEvent > should add file msgtype event to filtered timelineSet", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users with a custom limit", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > oidcClientstore should return a OidcClientStore", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns hour format for events created in the same day", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons for roomId", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev room mention", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > refreshes devices after verifying other device", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for regular InputEvent", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders voip tab when voip is enabled", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should retain mentions in the original message that are not removed by the edit", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; FreeBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: FreeBSD", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens share room dialog on button click", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders menu correctly", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is the exact same moment", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by power level", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > groups call disabled > disable calls in large rooms by default", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are disabled > and there is a predecessor in the create event, it should count predecessor highlight", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > displays error when pusher update fails", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and dismissing the dialog by clicking the background > should close the dialog and show the password input", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the room directory when the explore button is clicked", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Renders a spinner", + "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 12 hour mode", + "test/unit-tests/utils/beacon/duration-test.ts::beacon utils > msUntilExpiry > returns 0 when expiry has already passed", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config is fetched from a file and is empty", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > notices", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return not available and call showNoUpdate when current version matches most recent version", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles multiple users following the same sequence of memberships", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for LocalRoom", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should lookup .well-known for homeserver without protocol", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > ignores a mute change update", + "test/unit-tests/utils/local-room-test.ts::local-room > waitForRoomReadyAndApplyAfterCreateCallbacks > for an immediate ready room > should invoke the callbacks, set the room state to created and return the actual room id", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a falsy recording", "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > is highlighted when unsent", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with only lat and lon", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage safari", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > updates markers on changes to beacons", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should render a loader while loading", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads all state keys", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > emits an update event when createCrossSigning rejects", - "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > adds unread marker when room notification state changes to unread", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are no members > should return an empty list", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with public room filter", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a question and some options", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 4 (can't be guaranteed)", - "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should export if everything is fine", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays a loader while checking keybackup", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > renders stopping error when beacons have stopping and location errors", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should keep arrays the same", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > does not meet room requirements if there are not enough rooms", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > joins the call and closes the toast", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an audio and video device is available > should return the audio/video stream", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is not provided > does not render a link to open the room settings people tab", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > is empty if 3pid features are disabled", + "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Ready' phase (dialog mode) > should show a QR code if the other side can scan and QR bytes are calculated", + "test/components/views/dialogs/ModalWidgetDialog-test.tsx::ModalWidgetDialog > informs the widget of theme changes", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/alice:example.org?action=chat", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to invite", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > auto-approves OIDC requests for element-call", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for image files", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should clear storage", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Passes the feature flag on to the client when asking for visible rooms", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when video meta space is active > renders Conferences and Room but no People section", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > filters the rooms", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should cancel search on escape", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should handle when staticOidcClients object is falsy", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show both SSO button and username+password if both are available", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see removed from A->B", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getCurrentPosition() > resolves with current location", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if no rooms are open", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should abort login when we expect to find an access token but don't", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :boat", + "test/unit-tests/utils/export-test.tsx::export > checks if the reply regex executes correctly", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for FR", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders radios correctly", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have contentEditable at true", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@\u00ab should return false", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving to end and all orders are undefined", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > italics, bold, underline and strikethrough render as expected", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for unverified filter", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = true", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > no last viewed room in target space", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for non-3rd-party members", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we are checking the sync store", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and validating the link from the mail > should display the confirm reset view and now show the dialog", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should open room settings when clicking the room avatar", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns false for other input", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was successfully fetched", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = true", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders alternative key name", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > should send the mail and show the check email view", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding actions", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test prev room mention", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > renders without a beacon instance", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails without data.flows", + "test/unit-tests/utils/notifications-test.ts::notifications > getMarkedUnreadState > reads from unstable prefix", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > starts rendering stopping error on beaconUpdateError emit", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 0 unreads, getHiddenHighlightCount should return 0", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders handles empty tags", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show banner on hover", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > lists with a single non-empty item are still markdown", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getUserDeviceIds > should return the right result for known users", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills appear for event permalinks without a custom label", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > renders only the video call element", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should take user to view room for unjoined knockable rooms", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a beacon that is not live", + "test/unit-tests/components/views/location/Marker-test.tsx:: > renders member avatar when roomMember is truthy", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is falsy", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns false for an unknown asset type", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested blockquotes", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should enable encryption toggle and disable field when server forces encryption", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in start of a second non-editable part, with another one before it", + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > should join subspace when joining nested room", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > should not send receipts again", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should return the expected resizer distributions", + "test/unit-tests/Unread-test.ts::Unread > doesRoomOrThreadHaveUnreadMessages() > with a single event on the main timeline > an unthreaded receipt for the event makes the room read", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with body should return \u00bbuser: body\u00ab", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is replaced", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > handles error when updating history visibility", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > does not migrate if the device is flagged as migrated", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment cannot be fetched", + "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for 2 targets with a room", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > returns a proper count and color for highlights", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from SYNCING to SYNCING", "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > Favourites and People meta spaces should not be returned when the feature_new_room_list labs flag is enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > if user enters invalid command and then does not send, return undefined", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should be possible to disable the checkbox", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for a room message with unstable m.location msgtype", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > should clear the layout and emit an update if there are no longer apps in the room", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > throws for when a room is not indexed", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show a thumbnail while image is being downloaded", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Even", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a loading state when the encryption state is computed", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > should intercept clicks with a ViewRoom dispatch", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should set the visibility to public", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should show feedback prompt", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > refocuses on same beacon when clicking list item again", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if beta is disabled", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > user pill turns message into html", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a basic hierarchy", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at end of string", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > treats any invalid answer as a spoiled ballot", - "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information without url for electron clients", - "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should pluralise 5 files correctly", - "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding plural translations", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=false on non-last event if last event has a receipt from someone else", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggles session selection", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is undefined", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > decrypts event if needed", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > has no notifications with no rooms", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns correct results after final colon :o", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > emit should forward the call to VoiceRecording", "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should execute callbacks in registered order", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 24 hr time format", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with public rooms", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an warning E2EIcon when the e2E status = Warning", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if touchInput", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing opening square bracket", - "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a non beacon event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders categories correctly", - "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=offline", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > registers clicks", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting and adding some items should work", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should return usage if no args", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > re-sorts on a mute change", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays pending warnings when encryption is enabled", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = false, DM = false", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes English message and localized translated message", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element deletions", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > changes display name", - "test/unit-tests/components/views/elements/ProgressBar-test.tsx:: > works when animated", - "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should have a Matrix-branded destination file name", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles text in tags and translates with fallback locale", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds all top answers when there is a draw", - "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns null for a poll start event", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unflip > should match snapshot with no args", + "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > render the release announcement and close it", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > and an e2e status it should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is edited", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](foobar|)", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > does not render sign out other devices option when only one device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should not moving when the composer is filled", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > And the feature_dynamic_room_predecessors is not enabled > passes through the dynamic room precessors flag", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message in a thread > should render as expected", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Even -> Even", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the item in the middle should work", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when cross signing is not ready", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > authComponentStateForError > should return expected error for the registration page", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the kick button calls Modal.createDialog with the correct arguments", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should show knock room join rule when upgrade is enabled", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should render if wrapped in room context", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct > 1", + "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should convert snake_case to camelCase in simple scenarios", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > when 3pid changes capability is disabled > should not allow adding a new email addresses", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with public join rules", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Even", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains some items where one of them is a replacement > should contain the last recently set items", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > simple message renders as expected", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles simple variable substitution", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Percent-encoded param value", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > when encryption is force disabled > should go to setup e2e screen when user is in encrypted rooms", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute additions", + "test/unit-tests/components/views/settings/CryptographyPanel-test.tsx::CryptographyPanel > should open the export e2e keys dialog on click", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Correctly tags rooms > renders Public and Knock rooms in Conferences section", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should enable for all if percentage is 100", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > allows forwarding a live beacon that has a location", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should clear the requested state when the button tooltip is hidden", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > video room space contains all video rooms", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should not display an E2EIcon when the e2E status = normal", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in ReactNode when given more React children", + "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > throws without opening auth dialog when delete fails with a non-401 status code", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns false for an event with voice content", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > does shows context menu when right-clicking options", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for one of them, it should return false", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should not pillify room aliases", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > startOidcLogin() > navigates to authorization endpoint with correct parameters", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows the dehydrated devices if there are multiple", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isCreated should return false", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'verified', self-trust = true, DM = true", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when removing all mentions from content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should handle emojis", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, device not signed", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > should not show a shield for previously-verified users", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > renders nothing when there is no call", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates an existing list based on the key", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Opens the old room on click", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error from the event index", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show spinner above results when backpaginating", + "test/unit-tests/stores/widgets/WidgetPermissionStore-test.ts::WidgetPermissionStore > should update OIDCState for a widget", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for parts of words", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > handles when device is falsy", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should insert a newline character when shift enter is pressed when ctrlEnterToSend is false", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw upon non-20x code", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > unsilenced for existing sessions when notificationsEnabled setting is truthy", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 2 days ago", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with args", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate correct preview for message events in DMs", + "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > on sets signed device isolation mode", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > doesn't lookup showHiddenEventsInTimeline while rendering", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should call bootstrapCrossSigning with an authUploadDeviceSigningKeys function", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display a spinner when loading the device keys", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns the latest location event for a live beacon with location", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should not show mute button for one's own member", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > fetches poll history until event older than history period is reached", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: false } > Should display or not placeholder when editor content change", + "test/unit-tests/components/views/spaces/SpacePanel-test.tsx:: > create new space button > renders create space button when UIComponent.CreateSpaces component should be shown", + "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > hides text when minimized", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale pt", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains geo_uri", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > adds own users beacons to state", + "test/unit-tests/createRoom-test.ts::createRoom > should upload avatar if one is passed", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > throws for an unhandle update cause", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with hyphen in domain part", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > layout selection > should change the layout when selected", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > does not add ambiguous key to unique names", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with args", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Group correctly", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > no-ops if there are no state events", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > all widgets should be in the right container by default", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > sets up position handler with correct options", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentListToRoom with eventRelation when present", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Even", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > displays poll history when tab clicked", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes the toast", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > should show a tooltip with the room Id", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > should send room oob data to start login", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > opens the panel in the given room with the correct phase", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > updates the icon when the encryption status changes", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org/e/event", + "test/unit-tests/editor/parts-test.ts::editor/parts > appendUntilRejected > should accept emoji strings into type=emoji", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 2", + "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when only an audio stream is available > should return the audio stream", + "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotReachable", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders default tabs correctly", "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a recording", - "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match ctrlOrMeta key combo", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/LinkModal-test.tsx::LinkModal > Should display the link in editing", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > does not render space header", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-ie", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for state event", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length < B length", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends a vote event when I choose an option", - "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time with hours", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if the app is not in the container", - "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should prevent out of order results", - "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should show validation tooltip if passwords do not match", - "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from original event when edited", - "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is enabled", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ActiveRoomChanged when the viewed room changes", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with people filter", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a permalink to a message in the same room with the label \u00bbMessage from Member\u00ab", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > when sendReadReceipts setting is disabled > should send a private read receipt", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single SSO button if identity_providers is null", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a cross-user verification", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should access to 4S and call onFinish when 'Enter recovery key' is clicked", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for unverified filter", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for null", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for favourites -> all transition", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > only returns events related to a thread", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alt alias if found", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > does not export when export type is lastNMessages and message count is falsy", - "test/unit-tests/Rooms-test.ts::setDMRoom > when the direct event is undefined > should update the account data accordingly", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the read receipt is at the latest event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onSend when Enter is pressed when ctrlEnterToSend is false", - "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should add the widget successfully", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should make things rainbowy", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should create an array of given length", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for redacted event", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when no clientId is found in storage", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > shows generic text when multiple messages were pinned", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Can reset secret storage", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should strip tag from initial content", - "test/unit-tests/theme-test.ts::theme > enumerateThemes > should be robust to malformed custom_themes values", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when read receipt is not on the latest thread messages", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when data types has text/html but data can not be parsed", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits JoinRoomError if joining the room fails", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when force_disable property is falsy", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbow > should return usage if no args", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons do not change live state", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should contain the last recently accessed items", - "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverified device", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined for unknown users", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should retry uia request on click", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.direct=", - "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests only rooms matching a prefix", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should default to 50 if no powerlevel specified", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1993-11-01", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to public", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > removes a room avatar", - "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should display an error when recovery key is invalid", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > should fire to focus the message composer", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest event was sent by the current user", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device icon when no device type given", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects unmuted", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows search box when there's more than 20 members", - "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns true if device is verified", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key empty string", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google Nexus 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room settings on button click", + "test/unit-tests/utils/enums-test.ts::enums > getEnumValues > should work on string enums", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid audio files", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user active shortly after activity", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows re-voting after un-voting", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms per last message ts", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > should override browser shortcuts", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > renders merged timeline", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of another user", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status queued", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally true", + "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > renders non-beta labs settings when enabled in config", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > snoozeBulkUnverifiedDeviceReminder() > sets the current time in local storage", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while verifying", + "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near top edge of window", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > and an encrypted room > should return false", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Prefers sender.name", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > on liveness change > renders stopped UI when a beacon stops being live", + "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without room-ID", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with two pages server side relations > emitFetchCurrent > should emit the server side events", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is undefined", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > when feature_dynamic_room_predecessors is not enabled > passes that value in calls to getVisibleRooms during getSpaceFilteredRoomIds", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > undecryptable event > shows an undecryptable warning", + "test/unit-tests/components/views/avatars/DecoratedRoomAvatar-test.tsx::DecoratedRoomAvatar > shows an avatar with globe icon and tooltip for public room", + "test/unit-tests/components/views/elements/RoomFacePile-test.tsx:: > renders", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: default > should display the pinned message badge", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > should allow auto-completing multiple times with resets between them", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on others actionable event", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > throws an error when error is ERROR_INVALID_HOMESERVER", + "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return false for a Room", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > updates live beacon ids when users own beacons were created on device", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should show both call buttons in rooms smaller than 3 members", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > links", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > removes beacon event id from local store", + "test/unit-tests/ContentMessages-test.ts::uploadFile > should not encrypt the file if the room isn't encrypted", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > can have different appearance to its heading level", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return error when version check fails", + "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should do nothing if the matrix server version is supported", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > renders correctly", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time left > should not call stop", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should show validation tooltip if passwords do not match", "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up in list", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > honours m.space.parent if sender has permission in parent space", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > doesn't send a receipt if no room is in context", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes empty analyticsID if the id is not in the account data", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > should show a tooltip with the room Id", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should prevent \u00bbSettings\u00ab link click from bubbling up to radio buttons", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > all rooms space does contain rooms/low priority even if they are also shown in a space", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > shows the ShareDialog on click with knock join rules", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Odd -> Odd", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders a verified device", - "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > renders when enabled and room join rule is knock", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = true", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist access token when idb is not available", - "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > shouldn't do anything for a local room", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse creation events", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:u/alice:example.org?action=chat", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event exists in current timeline > does not render a poll tile when end event is invalid", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > oidcClientStore should raise an error without a client", - "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > renders user labels correctly", - "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > when not hovering the pill any more > should dimiss a tooltip with the room Id", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing for muted channels", - "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid Recovery Key", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for rooms which cannot be obtained via client.getRoom", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at end of single line", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if legacy store in MigrationState `NOT_STARTED`", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no crypto", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event with a replace relation", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not save client information on start", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the m.topic key and the legacy key undefined", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should skip the queue for the given callback", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores all the trailing :", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > multiple replacements of the same variable", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows a warning for an event from an unverified device", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > shows an error dialog with a generic error message", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should not show server picker", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > sets new beacon event id in local storage", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Removes old room if it finds a predecessor in the create event", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns undefined when there is no initial screen in session storage", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle undecryptable pre-join messages", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > clicking on ongoing (unpinned) call re-pins it", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > should send the mail and show the check email view", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name from a standard room ID", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > requests specific config for document domain", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped backslashes", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return mapping for develop version string", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with multiple winners", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should focus when receiving an Action.FocusEditMessageComposer action", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > repeatedly updates room state while connected", - "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > correctly migrates old settings to the new model", - "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room has no tags > should tag a room as favourite", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha when they have the same notif state", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when layout changes", - "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders share buttons when there is a location", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should call /logout", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > unordered lists", - "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows call details and connection controls if the call is loaded", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > orders rooms by recent with muted rooms to the bottom", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets space=Home filter for all -> home transition", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should clear text field and suggestions when a suggestion is accepted", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > does not show account management link when not available", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should not show call buttons in a room with more than 2 members", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with 3 coords", - "test/unit-tests/utils/export-test.tsx::export > checks if the reply regex executes correctly", - "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should prepend https to input if it lacks it", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders kicked message", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event not sent by current user", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backticks unescaped", - "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should seed the array with the given value", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a second non-editable part, with another one before it", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no events when I click in an ended poll", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Odd", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add widget to top container", - "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from CATCHUP to ERROR", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > keywords > allows adding keywords", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > does not open maximised map when on click when beacon is stopped", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object if @userMention is surrounded by text", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should use defaultName from props", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Shows the correct member count", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > disconnects when we leave the room", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > has() should return false for an item not in the cache", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when not minimized", - "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should treat invalid mxids as empty queries", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is replaced with an unencrypted one", - "test/unit-tests/stores/ActiveWidgetStore-test.ts::ActiveWidgetStore > tracks docked and live tiles correctly", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > does not parse room alias with too many separators", - "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only regular room members > should return the room members", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK not cached", - "test/unit-tests/components/structures/MainSplit-test.tsx:: > renders", - "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > creates a marker on mount", - "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false for a redacted event", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user has permissions to issue an invite for this room > should return true when user can invite and is a room member", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when receiving a \u00bbreply_to_event\u00ab > should not call notifyTimelineHeightChanged() for a different context", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > strips /me from messages and marks them as m.emote accordingly", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Verified", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > removing whole string", - "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should display custom theme", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders join button", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > opens forward dialog with correct event", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps square brackets", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > creates a new thread on reply in thread click", + "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sun-Sat in short mode", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should call scrollIntoView if specified", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > throws for when a room is not indexed", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile and \u00bbpromptBeforeInviteUnknownUsers\u00ab setting = false > should not show the \u00bbinvite anyway\u00ab dialog", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > updates join rule", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > does not set position on geolocate event", + "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for if no identity server is configured", + "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should render empty state", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > status messages", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > stops if VoIP isn't supported", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > adds trailing slash to relativeLocation when not an empty string", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should start a DM if the profile is available", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > switches to spotlight layout when the widget becomes a PiP", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > should return undefined when there are no beacons", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji when a word is selected", + "test/unit-tests/components/views/settings/ChangePassword-test.tsx:: > should call MatrixClient::setPassword with expected parameters", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description when editing a closed poll", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > If I am a guest > Returns the value for an enabled feature", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single SSO button if identity_providers is null", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing]() -> testing|", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with an unverified session", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 unverified: returns 'normal', self-trust = true, DM = false", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when Recovery key is filled by user", + "test/unit-tests/components/views/Validation-test.ts::Validation > should handle 0 rules", + "test/unit-tests/Notifier-test.ts::Notifier > getSoundForRoom > should not explode if given invalid url", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention without a completionId uses client.getRooms", + "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > excludes values with incorrect types", + "test/unit-tests/components/views/rooms/memberlist/PresenceIconView-test.tsx:: > renders correctly for presence=unavailable/unreachable", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should insert the read-marker in the right place", + "test/unit-tests/utils/DateUtils-test.ts::formatTime > correctly formats 12 hour mode", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > creates account data event", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onKeydown/onKeyUp handlers for keys other than space and enter", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > doesn't show a beta pill on normal invites", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns null when the first character is not / # @", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the local notification settings state", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > .start > should initialise the rust crypto library by default", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should allow reset of cross-signing", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a button to open the room settings people tab", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not call onSend when Enter is pressed when ctrlEnterToSend is true", + "test/unit-tests/SdkConfig-test.ts::SdkConfig > with default values > should return the default config", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in an empty composer", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages with no key backup", + "test/unit-tests/components/structures/RoomStatusBarUnsentMessages-test.tsx::RoomStatusBarUnsentMessages > should render the values passed as props", + "test/unit-tests/utils/iterables-test.ts::iterables > iterableDiff > should see removed from A->B", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows react button when we can react", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > buttons are disabled if there is an ongoing call", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a dm room > renders invite message", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > operates on the current room if no room is specified", + "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been not denied", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed message events", + "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > defaults to false when no setting exists", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns mute toggle button if conditions met", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should bind an email address", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Space when user does not have permission to add spaces", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns undefined if the given event is not a reply", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > does not open maximised map when on click when beacon is stopped", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > redacts related locations on beacon redaction", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 was verified: returns 'warning', DM = false", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > dispatches keybackup event when key backup is not enabled", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with preferences tab selected", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > beacons > returns null for a live beacon that does not have a location", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > paginates", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases with no candidate servers", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > reducer functions as expected > SetFocus works as expected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected attributes when avatar url for room is truthy", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should call reload to install update", + "test/unit-tests/Rooms-test.ts::setDMRoom > when removing an existing DM > should update the account data accordingly", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns false when users power levels have been changed by default settings", + "test/unit-tests/Modal-test.ts::Modal > forceCloseAllModals should close all open modals", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when not replying to an event > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and dismissing the login > should show the device settings", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > renders message count input with default value 100 when export type is lastNMessages", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll end events from a ended poll detail", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with location publish error > retry button resets location publish error", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should not display the tooltip on mouse over when disabled", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device type", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption unavailable > should create an unencrypted room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji in the middle of a word", + "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should not render when asked not to", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > renders a file as the avatar when supplied", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders an empty context menu for archived rooms", + "test/unit-tests/HtmlUtils-test.tsx::formatEmojis > \ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f emoji", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should look up the correct user and start a call in the room when a call is transferred", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for special case input", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is a not a number", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with help tab selected", + "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should start the confetti effect when the event is not outdated", + "test/unit-tests/Notifier-test.ts::Notifier > setPromptHidden > should persist by default", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > indicates no support for jitsi screensharing", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles 3 joined top level spaces", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Even", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with React function component", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when parsing is not successful", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > getValueAt > supportedLevelsAreOrdered correctly overrides setting", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > unpinAllEvents > should unpin all events in the given room", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > inline code", "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should handle rejections after unmounting sanely", + "test/unit-tests/components/views/beacon/ShareLatestLocation-test.tsx:: > renders share buttons when there is a location", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity trusted and device is signed by owner", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > renders categories correctly", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should not render the QR code if disabled", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when secret storage is being accessed", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when meta space is active > does not render add room button when UIComponent customisation disables CreateRooms and ExploreRooms", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > should render a room without a message as expected", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists starting later", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > correctly interpolates", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables individual buttons based on definition.disabled", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders with a cancel button if forceVerification false", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > reset() > clears countseen and toasts", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should show restricted room join rule when upgrade is enabled", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile thread summary > removes the thread summary when thread is deleted", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created less than 24h ago but on a different day", "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if Action.FocusMessageSearch is fired", - "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for invalid version strings", - "test/unit-tests/utils/dm/findDMRoom-test.ts::findDMRoom > should return the room for a single target with a room", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > disables submit button until geolocation completes", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should not choose a high-contrast theme if not available", - "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should prompt the user if the key is uncached", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > prepends events into summaries during backward pagination without changing key", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isNew should return false", - "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in the southern hemisphere", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when email 3pids exist", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > strips plaintext replies", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > renders nothing when beacon has no location", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect secret storage ready true", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with multiple previously pinned messages", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when multiple aspects change", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > stops publishing positions when a beacon has a stopping error", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the blacklist of unverified devices settings", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (ConnectionError) occurs", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should listen to room pinned events", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with public visibility", - "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of a first non-editable part, with another one following", - "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > checks the persisted value", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > renders the corresponding message", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus and clear when receiving an Action.ClearAndFocusSendMessageComposer", + "test/unit-tests/vector/init-test.ts::loadApp > should set window.matrixChat to the MatrixChat instance", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is true if the current room is open", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > should display the not encrypted status for an unencrypted event when the room becomes encrypted", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > TooltipText > returns '...and more' with hasMore", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for other errors", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > saves client information after setting is enabled", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for de-DE", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function once, even with new contexts", + "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should strip reply fallback", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when ctrl+Enter is pressed", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > when SDKContext has a client > userProfilesStore should return a UserProfilesStore", + "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from unedited event", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > user pill uses matrix.to", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with a custom class name", + "test/unit-tests/components/views/voip/VideoFeed-test.tsx::VideoFeed > Displays the room avatar when no video is available", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > get() should return undefined", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'account'", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the timeline window", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > pills", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns correct devices for combined verified and inactive filters", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns an error", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = true", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > handles negative numbers", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using browser font size", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > renders live duration dropdown with default option", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a user in the room > when clicking the pill > should dipsatch a view user action and prevent event bubbling", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > displays an error when an approval fails", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to unknown space is a nop", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :bow", "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - banana", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a disabled SeekBar > should render as expected", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > should show some emojis once keys are exchanged", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h3 with correct attributes", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events from a selected room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > ordered lists", - "test/unit-tests/Rooms-test.ts::setDMRoom > when trying to add a DM, that already exists > should not update the account data", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > adds a warning for invites", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 144 hours ago", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as unread", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > integration > should translate strings using translation system", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > for a maximised (centered) widget > clicking 'un-maximise' should send the widget to the top", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns false for an unknown asset type", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback for a non-local room", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders attribute deletions", - "test/unit-tests/components/views/messages/MPollEndBody-test.tsx:: > when poll start event does not exist in current timeline > logs an error and displays the text fallback when fetching the start event fails", - "test/unit-tests/utils/arrays-test.ts::arrays > GroupedArray > should maintain the pointer to the given map", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > handles remote disconnection", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was ended", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when feature is disabled", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should put unknown app version if on dev", - "test/unit-tests/components/views/polls/pollHistory/PollListItemEnded-test.tsx:: > excludes malformed responses", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > should notify progress", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > and seeking right > should skip to plus 5 seconds", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a top-level space that was being viewed", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > show non-matching query members with DMs if they are present in the server search results", - "test/unit-tests/components/views/settings/tabs/user/LabsUserSettingsTab-test.tsx:: > does not render non-beta labs settings when disabled in config", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > clicking view all inactive devices button works", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders maps unavailable error for a live beacon with location", - "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > calls onClick", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but relation is missing event_id", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in the only feature group are supported", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the roomid", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with defaults", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > redaction > cleans up redaction listener on unmount", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should return `scalar_token` from API /register", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > opens parent thread for a thread reply message", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > CryptoSdk > should send cryptoSDK superProperty when enabling analytics", - "test/unit-tests/utils/DateUtils-test.ts::formatLocalDateShort() > formats date correctly by locale", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > ignores liveliness error when checking syntax only", - "test/unit-tests/email-test.ts::looksValid > for \u00bbalice@example\u00ab should return false", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without content body property", - "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is bridging messages", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders spinner while loading", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unknown", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room pinned messages on button click", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is only a predecessor event, it should count predecessor highlight", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should setup e2e when server supports cross signing", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when languages dont load > _t", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and sending receipts is disabled > should send a fully read marker and a private receipt", - "test/unit-tests/MediaDeviceHandler-test.ts::MediaDeviceHandler > sets audio settings", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > updates filter when prop changes", - "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sets the correct thread in the room view store", - "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > opens the share dialog with the correct share link in an encrypted room", - "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should not capture non-permalink clicks", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for beacon_info event", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Empty skip list functionality > Tolerates deletions until skip list is empty", - "test/unit-tests/components/views/rooms/AppsDrawer-test.tsx::AppsDrawer > honours default_widget_container_height", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new muted room", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > returns human readable name", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should do nothing on cancel", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption verification panel with pending verification", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > logs and opens a dialog on a geolocation error", + "test/unit-tests/components/structures/MatrixClientContextProvider-test.tsx::MatrixClientContextProvider > Should expose a verification status context > returns false if device is unverified", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > should show error modal when the verification request is cancelled with a mismatch", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > insert new line into existing document", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should not mangle shift-enter when the autocomplete is open", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends several events when I click different options", "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is day before the current day", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote even if I did it on another device", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > and there is an update with invalid data > should log the invalid content", + "test/unit-tests/audio/Playback-test.ts::Playback > initialises correctly", + "test/unit-tests/components/structures/LegacyCallEventGrouper-test.ts::LegacyCallEventGrouper > detects an ended call", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains dm rooms", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > escaped html", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should show the events", + "test/unit-tests/components/views/elements/FilterTabGroup-test.tsx:: > calls onChange handler on selection", + "test/unit-tests/utils/exportUtils/PlainTextExport-test.ts::PlainTextExport > should return text with 24 hr time format", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should handle Navigator::setAppBadge rejecting gracefully", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should use m.image for PNG files which cannot be parsed but successfully thumbnail", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.server_notice=", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > acknowledges mute_device widget action", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return ready without showing update when user registered in last 24", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the room name for notifications", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the new poll option field after clicking add option button", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should start matrix client", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > handles event and calls sendContentListToRoom when data files are present", + "test/unit-tests/editor/range-test.ts::editor/range > range on empty model", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > disables the approve button if the power level is insufficient", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see added and removed in the same set", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages when there is a backup and device verification is true", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should ignore edits for events other than the latest one", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completionId if present in the completion", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > clicking submit updates device name with edited value", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show branded SSO buttons", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns true for all sub-space child rooms when includeSubSpaceRooms is true", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for all terms & services if no account data", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'maximise' should send the widget to the center", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > shows pin option when pinning feature is enabled", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to cancel a join request", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > does not allow device verification on session that do not support encryption", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a full m.asset event", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user is not banned", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should handle updating to a server with no supported flows", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns critical if notification level is Highlight", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message creation > Should moving when the composer is empty", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons for roomId", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > activity > invite", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Preview > renders preview space toggle", + "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > shows a spinner at first", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls the error handler when sentContentListToRoom errors", + "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed for the same pointer", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when default encryption setting is false", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > approves identity via module api", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > does not format pure white space", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles absence of backup", + "test/unit-tests/editor/history-test.ts::editor/history > push, undo, push, ensure you can`t redo", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > disables OK button when labs flag is not enabled", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999999 as 10M", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a matrix event", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias was removed", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when there is not existing selection", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should show an error dialog when no homeserver is found in local storage", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should add a phone number", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > can insert a mention into a text node", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a basic string", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block with language specifier", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits no event when a room has no unreads", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes empty analyticsID if the id is not in the account data", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > firing the read receipt event handler with a null event_id calls dispatch with undefined not null", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > usePassPhrase > should use dehydration when enabled", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is enabled > Should report recovery state as as Incomplete if backup key not cached locally", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a power level combobox", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > unhides the bar when a new knock request appears", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display the success dialog when the key backup is finished", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should throw upon non-20x code", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > uses banners display name when available", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should go home on home shortcut", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions are added after app start", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > sort emojis by shortcode and size", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > does not rename session or refresh devices is session name is unchanged", + "test/unit-tests/utils/colour-test.ts::textToHtmlRainbow > correctly transform text to html without splitting the emoji in two", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose default theme if system settings are inconclusive", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > does not render world readable option when room is encrypted", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > extends overlay window beyond main window at the start of the timeline", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should have light theme selected", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not clear storage", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv6 hostnames with ports", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the roomid", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: @userMention", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid Recovery Key", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isError should return false", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should replaceEmoticons properly", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles user cancelling during reciprocation", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > calls onchange on on tab click", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > resets seshat", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > overrides my other votes with my local vote", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TF:h", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if no functional members state event exists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code blocks containing markdown", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly without beacons", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready false", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room when changing join rule to restricted", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds up to nearest day when more than 24h - 40 hours formats to 2d", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > validates custom homeserver > should fall back to static config when well-known lookup fails", + "test/unit-tests/utils/objects-test.ts::objects > objectExcluding > should exclude the given properties", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > on startDm success > should set the room into creating state and call waitForRoomReadyAndApplyAfterCreateCallbacks", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu when there is no current device", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > should collect crypto version", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with reference relation", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns multiple results in order of search string appearance", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when invitedEmail is not associated with current account > renders invite message with invited email", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for a paragraph", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when no rooms are encrypted", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates if there are unsent messages", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1993-11-01", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on Action.OnLoggedIn", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > If the feature_dynamic_room_predecessors is enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/hooks/usePublicRoomDirectory-test.tsx::usePublicRoomDirectory > should work with empty queries", + "test/unit-tests/utils/AnimationUtils-test.ts::lerp > clamps the interpolant", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should work with hostnames with ports", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread notification badge", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > sets export type on change", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme by default", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > theme selection > should switch to dark theme", + "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when backup creation failed", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > renders a verified device", + "test/unit-tests/components/structures/auth/CompleteSecurity-test.tsx::CompleteSecurity > Renders without a cancel button if forceVerification true", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should focus when receiving an Action.FocusSendMessageComposer action > Should focus when receiving an Action.FocusSendMessageComposer action", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > appends events into summaries during forward pagination without changing key", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send message when there is no roomId", + "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should no-op if the badge count isn't changing", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should not respect HTML tags in plaintext message highlighting", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests a space whose alias matches a prefix", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we were waiting for the lock ourselves", + "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests an 'unread' ! if there are unsent messages", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when space is public", + "test/unit-tests/utils/oidc/authorize-test.ts::OIDC authorization > completeOidcLogin() > should make request complete authorization code grant", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a message with the correct fallback", + "test/unit-tests/utils/DateUtils-test.ts::formatFullDate > correctly formats without seconds", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders leave option when user does not have rights to see space settings", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is no room predecessor, getHiddenHighlightCount should return 0", + "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms without messages first", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > renders current session section with a verified session", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > upload should raise an error", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > closes menu if space changes from under it", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and clicking \u00bbSign in instead\u00ab > should call onLoginClick()", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with same previous algorithm > should show the expected texts", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width in large mode", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > join button is shown if there is an ongoing call", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render 2 pinned event", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only functional room members > should return an empty list", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Does not show search box when there's less than 20 members", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > expands the initial window when it starts with no overlay events", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > adds ambiguous key to all ids with non-unique names", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if userIds is empty", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > Displays edited content and new answer IDs if the poll has been edited", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > traverseSpace > avoids cycles", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to false for all of them, it should return false", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should updates when messages are pinned", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > closes on close button click", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without a refresh token", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if there is no other member in the room", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with floats", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Should have contentEditable at false when disabled", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display errors from bootstrapSecretStorage", + "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > should display room ID", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders only enable notifications switch when notifications are disabled", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tableflip > should match snapshot with no args", + "test/unit-tests/settings/controllers/FallbackIceServerController-test.ts::FallbackIceServerController > should force the setting to be disabled if disable_fallback_ice=true", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > does not call onClick when clicking device tiles actions", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends ring on create in a DM (two participants) room", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > Location events > forwards beacon location as a pin drop event", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > should edit a simple message", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return an empty array on no matches", + "test/unit-tests/utils/notifications-test.ts::notifications > localNotificationsAreSilenced > checks the persisted value", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace at end", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > updates when the list of knocking users changes", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns false for a beacon with live property set to false", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown should convert HTML entities", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > ask to join disabled > does not render the RoomKnocksBar", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > removes marker on unmount", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > without server support > is forcibly enabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > returns false for all sub-space child rooms when includeSubSpaceRooms is false", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > creates a loud notification", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides a single vote if I have not voted", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no left space", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should return static clientId when configured", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders a combobox and attempts to change power level on change of the combobox", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hour when less than 24h - 6h and 10min formats to 6h", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return false for LocalRoom", + "test/unit-tests/stores/right-panel/action-handlers/View3pidInvite-test.ts::onView3pidInvite() > should push a 3pid member card on the right panel stack when payload has an event", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is not enabled > passes the flag in to getVisibleRooms", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for unsupported desktop browsers", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as alert if invalid", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it running into rate limiting > should show the rate limit error message", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should still start a native call", + "test/unit-tests/components/views/dialogs/spotlight/RoomResultContextMenus-test.tsx::RoomResultContextMenus > renders the room options context menu when UIComponent customisations enable room options", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should clear stores", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > when a knock reason is provided > renders a link to open the room settings people tab", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unban > isEnabled > should return true for Room", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should persist credentials", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should fail when query params do not include valid code and state", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the first item should work", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > adds a new room", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not skip to auto join", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if user has no encrypted rooms", + "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return service_members field of the functional users state event", + "test/unit-tests/components/views/context_menus/EmbeddedPage-test.tsx:: > should show error if unable to load", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick candidate servers based on user population", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should focus the search field if focusRoomSearch=true", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > options button > opens message context menu on click", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is disabled > does not try to remove client info event that are already empty", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores duplicate :NUM (double port specifier)", + "test/unit-tests/components/views/dialogs/security/ImportE2eKeysDialog-test.tsx::ImportE2eKeysDialog > should have disabled submit button initially", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles mute state for legacy DontNotify action", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should not soft crash when joining a room from space hierarchy which has a link in its topic [Chrome]", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle back to room-specific search", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when all is defined", + "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle messages from unverified devices", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > submits location", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by last active timestamp", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > updates all mismatched rules from synced rules when primary rule is disabled", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates users state when a member is added", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns false for a room when the latest event was sent by the current user", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > renders dropdowns for input devices", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > does not render other sessions section when user has only one device", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > joins room on primary button click", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Even", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > disables buttons for rooms without send permissions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: /someCommand", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > isEnabled > should return true for Room", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for state event", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > renders requests fully", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > start > should ignore the MSC3812 dehydrated device", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > removes listeners", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is defined but '.m.room.message' isn't, uses .events_default", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show the invite button when canInvite is false", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and a connection error occurs > should show an info about that", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > re-renders on room join rule changes", "test/unit-tests/widgets/ManagedHybrid-test.ts::addManagedHybridWidget > should noop if no widget_build_url", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders central word changes", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders spinner while loading", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content contains a command but is not the first text node", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide read-marker at the end of creation event summary", "test/unit-tests/components/views/rooms/EventTile/EventTileThreadToolbar-test.tsx::EventTileThreadToolbar > renders", - "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > renders the devtools dialog", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders both cards when user has both unverified and inactive devices", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns human readable name", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without room ID > should raise an error", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room file panel on button click", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles multiple users following the same sequence of memberships", - "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > should send the voice recording", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should not filter out users sent by the server", - "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a non-DM room with one third-party invite", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showPollsButton = true > should display the button", - "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > should display an error if setup has failed", - "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should return empty sets for the same object", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores events for other timelines", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should change candidate server when highest power level user leaves the room", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when minimized", - "test/unit-tests/components/views/dialogs/security/CreateKeyBackupDialog-test.tsx::CreateKeyBackupDialog > should display an error message when there is no Crypto available", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should open room settings when clicking the room avatar", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getAppAvatarUrl > should support optional thumbnail params", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = false > and setting MessageComposerInput.showStickersButton to true > shouldtrue display the button", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when user is has invite rights for space", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Recently used emojis are correctly sorted", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > updates list order when devices change", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > renders the room header", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with a content body", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > should render 'Link new device' button in OIDC native mode", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > exports room on submit", - "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined on clients with no crypto", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders without children", + "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle to all rooms search", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure lexicographic order for prompt", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchOnlyKnownProfile > for a known user should return the profile from the API and cache it", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to invited", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders a question and some options", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for only terms that aren't already signed", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when shouldThrow = true and there is an error it should raise an error", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a reply using a slash command", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a disabled SeekBar > should render as expected", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return true for Room", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return true if keys for A < keys for B", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when a member is added", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should not contain the least recently accessed items", + "test/unit-tests/models/Call-test.ts::ElementCall > get > finds calls", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should logout of posthog", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should be in loading state when checking the recovery key and the cached keys", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > does not update synced rules when main rule update fails", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when all is defined", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have focus", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should retry uia request on click", + "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders with a logo by default", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > does not check key backup status again after check is complete", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are enabled > and there is a message and a thread without a reply > should render the message preview", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > isEnabled > should return true for Room", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > the perParticipantE2EE url flag is used in encrypted rooms while respecting the feature_disable_call_per_sender_encryption flag", + "test/unit-tests/audio/Playback-test.ts::Playback > toggles playback to paused from playing state", + "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::Does not render invite button in memberlist header > when UI customisation hides invites", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > emote", + "test/unit-tests/components/views/elements/InfoTooltip-test.tsx::InfoTooltip > should show tooltip on hover", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does nothing for empty element", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for empty URL", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should create html message", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > slash commands > adds relations for a .messages or .effects category command if there is a relation", + "test/unit-tests/utils/location/positionFailureMessage-test.ts::positionFailureMessage() > returns correct message for error code 3", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should be able to change the power level of the current user", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the main timeline", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate a room permalink for room aliases without candidate servers", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > adds a new muted room", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /upgraderoom > should be enabled for developerMode", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return true when an issuer is in session storage", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes asterisks", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions previousEvent is falsy", + "test/unit-tests/modules/ModuleComponents-test.tsx::Module Components > should override the factory for a ModuleSpinner", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > updates filter when prop changes", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the verification requirement is withdrawn", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > getValueOverride() > should return forced value is setting is disabled", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not debounce slow changes", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) 5; Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat two arrays", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > when there is an error fetching backups > prompts user to set up backup", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > other devices > deletes a device when interactive auth is required", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are backed up", + "test/unit-tests/email-test.ts::looksValid > for \u00bb@b.org\u00ab should return false", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getTurnServers > gets TURN servers", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display the recovery key", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on start", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > sets unread flag if event doesn't exist", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not unsilence calls when local notifications are silenced", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate changed properties", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and updating the server config > should show the new homeserver server name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > line breaks", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :kiss", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does nothing for a beacon that is already not live", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > renders sidebar correctly with beacons", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show two pinned messages", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > renders info from a previous event", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites with a reason", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to world_readable", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event that is not room message", + "test/unit-tests/components/views/elements/FacePile-test.tsx:: > renders with a tooltip", + "test/unit-tests/components/structures/SpaceRoomView-test.tsx::SpaceRoomView > SpaceLanding > should show member list right panel phase on members click on landing", + "test/unit-tests/components/structures/TabbedView-test.tsx:: > renders tabs", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > finds all top answers when there is a draw", "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not do anything for guests", - "test/unit-tests/vector/platform/PWAPlatform-test.ts::PWAPlatform > setNotificationCount > should handle Navigator::setAppBadge rejecting gracefully", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: ThreadsList > shows an unread notification badge", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpinnable event > should hide unpinnable events found in local timeline", - "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > and the room is known to the client > and all members have been invited or joined > and a RoomHistoryVisibility event > should return true", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and submitting it > and clicking \u00bbRe-enter email address\u00ab > should close the dialog and go back to the email input", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme on onload call", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > has room info icon that opens the room info panel", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.lowpriority=", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new phone number", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > createMessageContent > sends plaintext messages correctly", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for a mention that contains punctuation", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add three widgets to top container", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > user pill with displayname containing opening square bracket", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for all -> space transition", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > should show the \u00bbinvite anyway\u00ab dialog if the profile is not available", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders devices without available client information without error", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has not yet been started, the displayname and avatar should be null", + "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > thread context > should pre-populate a thread relationship", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if latitude is not a number", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at previous top if given", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > signs out of all other devices from current session context menu", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > hasRecording should return false", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for a room", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll that I have not voted in", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render", + "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > should show edit button if we are the sender and can post an edit", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room swapped", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > shows the verified icon", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should clear the timezone when the publish feature is turned off", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates multiple sequences of repetitions with other events between", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.canonical_alias", + "test/unit-tests/toasts/IncomingCallToast-test.tsx::IncomingCallToast > closes toast when the matrixRTC session has ended", + "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > destroys recording for a room if it exists in state", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Hides a verified dehydrated device", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > poll history > renders poll history tab", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > returns early if current editorRef is null", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should generate the correct preview for a reaction on a thread root", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a space > should launch a confirmation modal", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > changing the filter clears selection", + "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > dispatch a local_room_event", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick a candidate server for the highest power level user in the room", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > disableWidgetAssets > should throw upon non-20x code", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a message in another room", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > getSecretStorageKey > should prompt the user if the key is uncached", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.server_notice=", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing](foobar) -> testing|", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should pin the event if not pinned", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should count different error codes separately for multiple failures with different error codes", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > returns clearWatch function", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > pressing escape closes the autocomplete", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be disabled when the modern layout is not enabled", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when some devices are selected", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should correctly wrap format bold", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles error fetching backup", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders the first 20 answers if 21 were given", + "test/unit-tests/utils/dm/createDmLocalRoom-test.ts::createDmLocalRoom > when rooms should be encrypted > for MXID targets with encryption available > should create an encrypted room", "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return false for 1-1 rooms when widget_build_url_ignore_dm is true", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables live share setting on ok button submit", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can call if you have no friends but can invite friends", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCountLong > formats numbers according to the locale", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest second when less than 1min - 59 seconds formats to 59s", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with react node and translates with fallback locale", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return undefined for expired items", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Re-sort works when sorter is swapped", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not actionable", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Inactive", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > orders rooms by notification state then recent", - "test/unit-tests/components/views/messages/MStickerBody-test.tsx:: > should show a tooltip on hover", - "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h4 with correct attributes", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends private read receipts", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-reactions", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if content does not contain any mention or command characters", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as unread", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when identity changes", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should return config from config.json", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > calls onClick handler when clicking outside of share buttons", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by ID and join", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show cannot pin warning", "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx:: > should fetch github proxy url for each repo with old and new version strings", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > after a session is restored", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > unordered lists", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should do nothing if the matrix server version is supported", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > uses forbidden by default when room has no guest access event", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work within 0-100 when val > 100", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly sends a message", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on initial load", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > public room label > shows a public room label for a public room", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address for server name", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display information about the recovery key", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should switch rooms when edit is clicked on a search result for a different room", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Inactive", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be disabled when the modern layout is not enabled", - "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a window source in the window tab", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms per last message ts", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing at start of non-editable part prepends", - "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns all devices when no securityRecommendations are passed", - "test/unit-tests/components/views/location/LiveDurationDropdown-test.tsx:: > updates value on option selection", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > does allow submitting when there are options and a question", - "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Sorting order is maintained when rooms are inserted", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > disables OK button when labs flag is not enabled", - "test/unit-tests/settings/controllers/FontSizeController-test.ts::FontSizeController > dispatches a font size action on change", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders denied request message", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should not create a pickle key when credentials do not include deviceId", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncEvery > when called with some items and the predicate resolves to true for all of them, it should return true", - "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isCreated should return false", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > goes to room of latest beacon with stopping error when clicked", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > while we are checking the sync store", - "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been not denied", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > poll history > renders poll history option", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display a spinner when loading the device keys", - "test/unit-tests/Rooms-test.ts::setDMRoom > when the current content is undefined > should update the account data accordingly", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 1066-10-14", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known force_disable for encryption setting", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > getScalarPageTitle > should throw upon non-20x code", - "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving to end and all orders are undefined", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :heart", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > orders rooms by tag order without categorizing", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format multi line code", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > unordered lists", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by last active timestamp", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > updates device", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should create a private room", + "test/unit-tests/editor/model-test.ts::editor/model > emojis > regional emojis should be separated to prevent them to be converted to flag", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time is up > should call stop", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user knock has been denied", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoom > dispatches Action.JoinRoomError and Action.AskToJoin when the join fails", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should call the callback with the parameters when parameters change during the timeout", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0571-04-22", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when user does not have permission to add children", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is not set > returns true when setting value is true", + "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > updates map bounds when bounds prop changes", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles a basic hierarchy", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders tabs correctly", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > sends a poll create event when submitted", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should remove fresh login flag from session storage", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > expect that My filter for ThreadPanelHeader properly renders Show: My threads", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 3 days, 6 hours, 48 minutes, 59 seconds formats to 3d 6h 48m 59s", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should support removing unknown keys", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > does not try to publish anything if there is no known position after 30s of inactivity", + "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should update the value when UIStore's value changes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns true when user has live beacons", + "test/unit-tests/components/views/rooms/PresenceLabel-test.tsx:: > should render 'Offline' for presence=offline", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > should not show invalid terms", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > sends notify event on connect in a room with more than two members", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > does not render section when UIComponent customisations disable room and space creation", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > resets on cancel", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not do any geolocation when user has no live beacons", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is closed", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove in middle of string", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect unstable as unsupported", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders block element additions", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks client information", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > TextForPinnedEvent > mentions message when a single message was unpinned, with a single message previously pinned", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySeed > should create an array of given length", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should displays votes on polls not found in local timeline", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: true } > Should add an emoji in the middle of a word", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for release version strings", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return false for expired items", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null if the offset is outside the content length", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 59 seconds formats to 59s", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > hasLiveBeacons() > returns false when user does not have live beacons", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should skip the queue for the given callback", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > copies the thread root id when provided", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should view in the timeline", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > renders a button element", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > shows a ghost read-marker when the read-marker moves", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should send html message", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.CancelAskToJoin > calls leave()", + "test/unit-tests/components/views/messages/MessageTimestamp-test.tsx::MessageTimestamp > should show full date & time on hover", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply manually selected filter > with public rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > orders rooms by recent with muted rooms to the bottom", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should submit successfully with a valid custom homeserver", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > asks for confirmation when resetting seshat", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (without plain text around)", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isCreated should return false", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 unverified: returns 'normal', self-trust = true, DM = true", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a warning message when poll has undecryptable relations", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > does not allow signing out of all other devices from current session context menu", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi for large rooms", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > advances the overlay timeline window", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as low priority > should untag a room low priority", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill without splitting at the colon", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match basic key combo", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains an invalid geo_uri", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > should render nothing when room has no error or unsent messages", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > overwritelogin > should replace the current login with a new one", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values for portrait images", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @foo:localhost", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should scroll to bottom after sending a html message", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > updates the UI when another session changes the local notifications", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > should call prepareToEncrypt when the user is typing", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > sets notification count when count is changing", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display only the new message button", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child invites", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user passive after 10s of no activity", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test user mentions", + "test/unit-tests/components/views/elements/SyntaxHighlight-test.tsx:: > uses the provided language", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders loading beacon UI for a beacon that has not started yet", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 > should render the PiP content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with html content", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should show 'no results' if appropriate", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > without delegated auth > should warn and do post-logout cleanup anyway when logout fails", + "test/unit-tests/components/views/dialogs/security/RestoreKeyBackupDialog-test.tsx:: > should restore key backup when passphrase is filled", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same but order different", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > show non-matching query members with DMs if they are present in the server search results", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up recovery > does not show the 'set up recovery' toast if the user has chosen to disable key storage", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits JoinRoomError if joining the room fails", + "test/unit-tests/utils/notifications-test.ts::notifications > createLocalNotification > does not override an existing account event data", + "test/unit-tests/components/views/elements/PowerSelector-test.tsx:: > should reset when onChange promise rejects", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > unpin all > should allow unpinning all messages", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows placeholder info if the call isn't loaded yet", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear for event permalinks with a custom label", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an explicitly stopped beacon", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders homeserver_lacks_support", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > returns an empty object when room map has not been populated", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should hide the read-marker at the end of summarised events", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > does not display rooms with nsfw keywords in results when showNsfwPublicRooms is falsy", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return true from VoiceRecording", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > dismisses itself once the request can no longer be accepted", + "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sunday-Saturday in long mode", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles partial cycles with additional spaces coming off them", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > maintains samples for Odd", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should reject with usage for invalid input", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications when event does not have notify push action", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > at end of string", + "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > RoomMemberTileView > should display an warning E2EIcon when the e2E status = Warning", + "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Shows migration progress", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label if rust crypto and new version", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a finished poll with no votes", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > adding a new beacon > kills live beacons when geolocation is unavailable", + "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room", + "test/unit-tests/components/views/location/Marker-test.tsx:: > renders with location icon when no room member", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > should log the invalid content", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should ignore when formatted_body is not filled", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (via default)", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > ordering of top container widgets should be consistent even if no index specified", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::getMappedSuggestion > returns the expected mapped suggestion when first character is /", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors feature is not enabled > passes the flag through to getVisibleRooms", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by prefix", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > prepend text to existing document", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomState > reads a specific state key", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted local room > should show the expected texts", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications before syncing has started", + "test/unit-tests/components/views/dialogs/ShareDialog-test.tsx::ShareDialog > should render a share dialog for an URL", + "test/unit-tests/utils/room/shouldEncryptRoomWithSingle3rdPartyInvite-test.ts::shouldEncryptRoomWithSingle3rdPartyInvite > when well-known promotes encryption > should return false for a DM room with two third-party invites", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should show context menu on widget row", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with private visibility", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should should open integration manager on click", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is not opened on the pinned message list", + "test/unit-tests/useTopic-test.tsx::useTopic > should display the room topic", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > does nothing on click when a beacon has no location", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for supported browsers", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders a verified device", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles many users following the same sequence of memberships", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > render QR then back", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render custom suggestion element when renderSuggestion() is defined", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > type after inserting pill", + "test/unit-tests/utils/DateUtils-test.ts::formatPreciseDuration > 6 hours, 48 minutes, 59 seconds formats to 6h 48m 59s", + "test/unit-tests/components/views/messages/MFileBody-test.tsx:: > should show a download button in file rendering type", + "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a self-verification", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should initialise oidc client from constructor", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > highlightEvent > should dispatch an action to view the event", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > don't show external conference button if the call is not shown", + "test/unit-tests/editor/range-test.ts::editor/range > replace a part with an identical part with start position at end of previous part", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > tracks layout", + "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should call createCrossSigning when startInitialCryptoSetup is called", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > 24 hours formats to 1d", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Enabled", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Links to the event in the room if event ID is provided", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for event with a content body", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts notifications type", + "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > does not re-wrap if called multiple times", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationPositionToTimedGeo() > maps geolocation position correctly", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to HTML messages", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > filters ended polls", + "test/unit-tests/settings/SettingsStore-test.ts::SettingsStore > runMigrations > migrates URL previews setting for e2ee rooms", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts rooms when timeline updates", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > returns initial screen from session storage", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should show a spinner before the promise resolves", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing for muted channels", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts true HTML topic with emoji to HTML", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > with unknown algorithm > should show the expected texts", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should upload", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render a non-permalink", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForSyncError > should match snapshot for M_RESOURCE_LIMIT_EXCEEDED", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no e2ee well known", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > when a call starts > tracks participants", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should allow silencing an incoming call ring", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > does not send chat effects in threads", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns numeric results in correct order (query pos)", + "test/unit-tests/utils/SnakedObject-test.ts::SnakedObject > should prefer snake_case keys", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > handles error when updating history visibility", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle code blocks", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Sets font as expected > does not add double quotes if already present and sets the font as the system font", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > dropping text does not trigger auto-complete", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > doesn't stop messaging when connecting", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should not collapse beacons as part of creation events", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 1 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > inline code", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a group \"asking to join\"", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing pub key if set", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > midPointsBetweenStrings > should return empty array when the request is not possible", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > close lobby button is shown if there is an ongoing call but we are viewing the lobby", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > downsamples correctly from Even -> Even", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > supportsNotifications returns true when platform supports notifications", + "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders children with map renderProp", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon without error when no beacons exist for room", + "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when use system theme is truthy", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance starts up normally when the first shut down cleanly", + "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > with error > displays correct fallback content when map_style_url is misconfigured", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > activates the metaspace on click", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after sync stops", + "test/unit-tests/components/views/polls/pollHistory/PollListItem-test.tsx:: > renders a poll", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when no static clientId is configured and no registration endpoint", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the read receipt button calls dispatch with correct event_id", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when there is no default property", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location stable type", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns true when setting value matches incompatible value", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows an unverified dehydrated device", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > lets you change the pusher state", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions after one publish error", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return the intersection", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify the user to posthog if pseudonymous", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with only non-local votes", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for normal message", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unknown", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > updates > updates on decryption within 1s", + "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on element differences", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > with a refresh token > should create new matrix client with credentials", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, and device signed", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should allow changing when neither server nor well known force encryption", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should upload the file and trigger the upload events", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayRescale > should rescale", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > stops beacon when liveness changes from true to false and beacon is expired", + "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates back to poll list from detail view on header click", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > does not render export format when set in ForceRoomExportParameters", + "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h3 with correct attributes", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > without encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct content contains the entire event > should log the invalid content", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should log and return when discovery and validation fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag true on A length > B length", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unexpected_message_received", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should warn about self demotion", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state NEW > isError should return false", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > sets and displays audio processing settings", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should allow clearing filter manually > with public room filter", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Video", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return issuer from localStorage", "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > adds an error message when updating notification level fails", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > removes listeners", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > should not show mute button for one's own member", - "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should mark selected suggestions as selected", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.server_notice=", - "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return true if the app is in the container", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect userText", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a poll with no votes", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have focus", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length < B length", - "test/unit-tests/components/views/settings/tabs/room/NotificationSettingsTab-test.tsx::NotificatinSettingsTab > should show the currently chosen custom notification sound", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > does not render invite menu item when UIComponent customisations disable room invite", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns null for a live beacon that does not have a location", + "test/unit-tests/SecurityManager-test.ts::SecurityManager > accessSecretStorage > runs the function passed in", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should create and start new matrix client with credentials", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSome > when called with some items and the predicate resolves to false for all of them, it should return false", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > orders rooms by notification state then alpha", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > waits for messaging when connecting", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with federation", + "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has no hash > does not set an initial screen in session storage", + "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should not fire callback which was added during a dispatch", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should show complete security screen when user has cross signing setup", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term was not a permalink", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > replace in middle", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 4 when notificationCountType is 4", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event without content body property", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if nothing is open", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds to nearest hours when less than 24h formats to 2h", + "test/unit-tests/utils/membership-test.ts::waitForMember > waits for the timeout if the room is known but the user is not", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should work with empty queries", + "test/components/views/dialogs/security/InitialCryptoSetupDialog-test.tsx::InitialCryptoSetupDialog > calls retry when retry button pressed", + "test/unit-tests/accessibility/LandmarkNavigation-test.tsx::KeyboardLandmarkUtils > Landmarks are cycled through correctly without an opened room", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should fail to save, load, and delete from a non-existent table", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is the exact same moment", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render block katex", + "test/unit-tests/Terms-test.tsx::Terms > should prompt for only services with un-agreed policies", + "test/unit-tests/models/notificationsettings/NotificationSettings-test.ts::NotificationSettings > parses a typical pushrules setup correctly", + "test/unit-tests/hooks/useWindowWidth-test.ts::useWindowWidth > should return the current width of window, according to UIStore", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Rename sessions > renames other session", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > when server supports cross signing and user does not have cross signing setup > should go to setup e2e screen", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links with emphasis are \"escaped\" correctly", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should ignore guest accounts when ignoreGuest is true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > does not show ignore or direct message buttons when member userId matches client userId", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should focus when receiving an Action.FocusEditMessageComposer action", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 4 (can't be guaranteed)", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with voip tab selected", + "test/unit-tests/editor/position-test.ts::editor/position > move backwards within one part", + "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns undefined if notification level is None", + "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders without a logo when showLogo=false", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > sets position on geolocate event", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate no differences when there are none", + "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected with detail content", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.archived=", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles tag substitution with React function component and translates with fallback locale", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPad Pro (11-inch); iOS 15.2; Scale/3.00)", + "test/unit-tests/utils/room/getJoinedNonFunctionalMembers-test.ts::getJoinedNonFunctionalMembers > if there are only regular room members > should return the room members", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > does not treat a command outside the first text node to be a suggestion", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /topic > should show topic modal if no args passed", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 0 others: returns 'warning', self-trust = false, DM = false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::isEventToHandleAsClipboardEvent > returns true for ClipboardEvent", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not call the callback if it\u2019s disabled", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > does not render dropdown when no devices exist for type", + "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text heading", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > auto-approves capabilities of virtual Element Call widgets", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Rooms are in sorted order after initial seed", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks a failed decryption with expected raw error for a visible event", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should not allow to invite a MXID and an email to a DM", + "test/unit-tests/vector/routing-test.ts::onNewScreen > should not replace history if changing rooms", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for mixed content error", + "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns null if event contains m.location with invalid uri", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays a warning when a user's identity is in verification violation", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays toast while uploading avatar", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Element Call > Element Call enabled > Start Element calls > defaults to moderator for starting calls", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > does not add other users beacons to beacon state", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on own actionable event", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should display the dialog for the device of the current user", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should start matrix client", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should remove any access token from storage when there is none in credentials and idb save fails", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > gives up", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client fails to get 3PIDs > renders error message", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > properly parses #_foonetic_xkcd:matrix.org", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 3 mins", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > without a pickle key > should remove fresh login flag from session storage", + "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show server picker", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > does not include pending root event in the timeline twice", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > for the current device > renders an unverified device", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a room mention with a completionId uses client.getRoom", + "test/unit-tests/autocomplete/RoomProvider-test.ts::RoomProvider > suggests only rooms matching a prefix", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 1-parent variant", + "test/unit-tests/components/views/settings/devices/filter-test.ts::filterDevicesBySecurityRecommendation() > returns all devices when no securityRecommendations are passed", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > findEditableEvent > should not explode when given empty events array", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends a vote event when I choose an option", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > should open user device settings", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match key + multiple modifiers key combo", + "test/unit-tests/components/views/location/Marker-test.tsx:: > does not try to use member color without room member", + "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > enabling/disabling > enabling Element calls > enables Element calls in private room", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > linkification get applied correctly into the DOM", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when WebGl is not enabled", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show error when encrypted media cannot be decrypted", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > uses beacon owner name as beacon name", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render initial tab when initialTabId is set", + "test/unit-tests/components/views/rooms/RoomPreviewCard-test.tsx::RoomPreviewCard > shows a beta pill on Element video room invites", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with a non-thread relation > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should display a tooltip", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify an MXID permalink", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > tracks message sending progress across multiple rooms", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets space=Home filter for all -> home transition", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > pin button > should listen to room pinned events", + "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid image files", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should generate big emoji for an emoji-only reply to a message", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If a third instance starts while we are waiting, we give up immediately", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display information about the recovery key", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns a non-200 status", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for activity", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should throw when pinned event has no sender", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct message when room join rule changed to public", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return false from VoiceRecording", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone; iOS 15.2; Scale/3.00)", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > in middle of string with duplicate character", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if pinned events do not contain the event id", + "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > opens the room inviter", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event not sent by current user", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up our own device if we're disconnected", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > selects correct button when value is provided", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects unmuted", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should go straight to logged in view when crypto is not enabled", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > isAppInContainer > should return false if the app is not in the container", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ignores all the trailing :", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK not cached", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles full cycles", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FF:h", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when actions event is falsy", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMemberEvent() > should handle rejected invites", + "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > RovingTabIndexProvider renders children as expected", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns true for poll start event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRoom with completion if present and correct format", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for IE", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create loud notification when event does not have sound tweak in push actions", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > hasRecording should return true", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for @room", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > shows verify session toast when account has cross signing", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > checks the event status", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > clicking cancel button from share type screen closes dialog", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token in localStorage when idb fails to save token", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is an old room > and it has 23 unreads, getHiddenHighlightCount should return 23", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match ctrlOrMeta key combo", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the recovery panel when key storage is enabled", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should remove a phone number", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally false", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > renders no results correctly for Inactive", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not actionable", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should not has placeholder", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.conferences=", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show react button when we cannot react", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > checks keybackup status when setup encryption toast has been dismissed", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > renders", + "test/unit-tests/components/views/rooms/NewRoomIntro-test.tsx::NewRoomIntro > for a DM Room > should render the expected intro", + "test/unit-tests/components/views/avatars/MemberAvatar-test.tsx::MemberAvatar > shows an avatar for useOnlyCurrentProfiles", + "test/unit-tests/editor/model-test.ts::editor/model > handling line breaks > type in empty line", + "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders with children", + "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button in expanded mode", + "test/unit-tests/integrations/IntegrationManagers-test.ts::IntegrationManagers > getOrderedManagers > should return integration managers in alphabetical order", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should return a result", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > should render", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > removes a room", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.audio event type", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped beacon UI for an expired beacon", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > does not display filter description when filter is falsy", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks in code blocks", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > updates synced rules when they exist for user", + "test/unit-tests/UserActivity-test.ts::UserActivity > should not consider user passive after 10s if window un-focused", + "test/unit-tests/utils/PhasedRolloutFeature-test.ts::Test PhasedRolloutFeature > should not enable for anyone if percentage is 0", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processCommand > can change the parent hook state when required", + "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > calls onChange on click", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > requests notification permissions and returns result", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > durationSeconds should return the VoiceRecording value", + "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > renders enable text", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Mozilla/5.0 (Linux; Android 9; SM-G973U Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36", + "test/unit-tests/components/views/beacon/OwnBeaconStatus-test.tsx:: > errors > with stopping error > renders in error mode", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > at start of last line", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element deletions", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readRoomTimeline > reads up to a specific event", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > isQuickReaction > correctly detects quick reaction", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > should send a fully read marker and a public receipt", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix.org", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > A-Element-R label > should add A-Element-R label to the set of requested labels", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > type Notification dispatches view_room", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room with no receipts", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns null when value is a valid theme", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Credentials > should collect device id", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > strips /me from messages and marks them as m.emote accordingly", + "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for something that is not an URL", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > renders no devices expanded by default", + "test/unit-tests/editor/history-test.ts::editor/history > push, undo, then redo", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias didn't change", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on new beacon event > emits a liveness change event when new beacons change live state", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > renders", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > surrounds lists with newlines", + "test/unit-tests/components/views/settings/encryption/EncryptionCard-test.tsx:: > should render", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return true if visibility customisation returns true", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncSomeParallel > when all the predicates return false", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent widget with back button when viewing the room", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles tag substitution with React function component", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > disables the checkbox when there is no server support", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should allow keyboard navigation using arrow keys", + "test/unit-tests/editor/position-test.ts::editor/position > move backwards crossing to other part", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders invite menu item when UIComponent customisations enables room invite", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the room name when the room has a valid completionId", "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > after empty line", - "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should batch promises into groups of a given size", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knocked to the room", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns default for other error", - "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a string enum", - "test/unit-tests/components/views/rooms/RoomSearchAuxPanel-test.tsx::RoomSearchAuxPanel > should allow the user to toggle back to room-specific search", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unverified device", - "test/unit-tests/utils/ErrorUtils-test.ts::messageForLoginError > should match snapshot for unknown error", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should handle when attachment srcHttp is falsy", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > shows verify session toast when account has cross signing", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > should send a fully read marker and a public receipt", - "test/unit-tests/components/views/settings/shared/SettingsSubsection-test.tsx:: > renders with plain text description", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return false when we have a receipt for the thread", - "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > updates with new locations", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > rejects with an error when general config rejects", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v4 tests > should properly parse IPs v4 as the domain name while ignoring missing port", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > orphan rooms are added to Notification States for only the Home Space", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 3", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for parts of words", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Animated PNG", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was missed", - "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders without icon", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > has() should return true for items in the caceh", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > catches error and logs when saving client information fails", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without msgtype", - "test/unit-tests/utils/pillify-test.tsx::pillify > should pillify @room in an intentional mentions world", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should call onChange handler", - "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should escape single quote in placeholder", - "test/unit-tests/utils/device/clientInformation-test.ts::getDeviceClientInformation() > excludes values with incorrect types", - "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Video", - "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > an activity notification is ignored by default", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > orders rooms by alpha", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling a user", + "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use display name for your others' reactions", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is same day as current day", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > all rooms space does contain rooms/low priority even if they are also shown in a space", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > updates latest location", + "test/unit-tests/stores/room-list-v3/skip-list/RoomSkipList-test.ts::RoomSkipList > Sorting order is maintained when rooms are inserted", + "test/unit-tests/components/views/rooms/BasicMessageComposer-test.tsx::BasicMessageComposer > should allow a user to paste a URL without it being mangled", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > in middle of non-editable part (with plain text around)", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should return a Playback with the data", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc2516.voice content", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if none of the users has a device", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching threepids fails", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if all conditions are met", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > when MSC3946 dynamic room predecessors is enabled > should call getVisibleRooms with MSC3946 dynamic room predecessors", + "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > renders expected fields", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > isUserAuthenticatedWithOidc() > should return false when no issuer is in session storage", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > Removes old room if it finds a predecessor in the create event", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should match snapshot when empty", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps backslashes", "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > play a sound for > mentions", - "test/unit-tests/utils/tooltipify-test.tsx::tooltipify > ignores node", - "test/unit-tests/components/structures/ReleaseAnnouncement-test.tsx::ReleaseAnnouncement > when a dialog is opened, the release announcement should not be displayed", - "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests a space whose alias matches a prefix", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/somewhere:example.org/e/event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render WysiwygComposer when isRichTextEnabled is at true", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > when authenticated via OIDC native flow > should not try to create a token refresher without an issuer in session storage", - "test/unit-tests/Notifier-test.ts::Notifier > evaluateEvent > should a pop-up for thread event", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show form when custom URLs disabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and a valid editor ref calls onChange with the editorRef innerHTML", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and when beacon liveness changes from false to true", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isVoiceMessage() > returns true for an event with msc3245.voice content", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for sticker event", - "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should use the provided entries", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to expand a reason", - "test/unit-tests/components/views/dialogs/MessageEditHistoryDialog-test.tsx:: > should match the snapshot", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct default message", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > displays encryption as enabled", - "test/unit-tests/Modal-test.ts::Modal > forceCloseAllModals should close all open modals", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to change the recovery key > should display the recovery key", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /roomavatar > isEnabled > should return true for Room", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0571-04-22", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /deop > should return usage if no args", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should display a tooltip", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a loader while responses are still loading", - "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > handling keyboard events > calls onClick handler on space keyup", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login fails > should not clear storage", + "test/unit-tests/components/views/dialogs/spotlight/PublicRoomResultDetails-test.tsx::PublicRoomResultDetails > Public room results", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches case-insensitive", + "test/unit-tests/components/views/spaces/useUnreadThreadRooms-test.tsx::useUnreadThreadRooms > a notification and a highlight summarise to a highlight", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > updates history visibility", + "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should insert at the correct end", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for notification when forced", + "test/unit-tests/settings/controllers/SystemFontController-test.ts::SystemFontController > dispatches a system font update action on change", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month, date, year when activity is in a different calendar year", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > should update the warning when the event is replaced with an unencrypted one", + "test/unit-tests/utils/export-test.tsx::export > numberOfMessages exceeds max", + "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > renders unread thread notification badge", + "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should change the setting when toggled", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after poll ended", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > signs out directly if no rooms are encrypted", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while loading", + "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > off sets all device isolation mode", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use server .well-known default for encryption setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > updates rooms state when a child room is added", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display when the cross-signing data are available", + "test/CreateCrossSigning-test.ts::CreateCrossSigning > should throw error if server fails with something other than UIA", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > calls invite on approve", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not export when size limit is larger than max", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100 when pct < 0", + "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does not render the permalink", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > disables the deny button if the power level is insufficient", + "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding plural translations", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with floats", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when unverified sessions at app start have been dismissed", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks without protocol", + "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config 404s", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > returns true for needsUrlTooltips", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes backticks outside of code blocks", + "test/unit-tests/utils/ErrorUtils-test.ts::messageForConnectionError > should match snapshot for ConnectionError", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > real space > activates the space on click", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > upload > should reuse the result", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > uses hs url hostname when serverName is falsy in args and config", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isRecording should return true from VoiceRecording", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles tag substitution with React function component and translates with fallback locale, attributes fallback locale", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = false, DM = false", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status encrypting", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when notifications are on for email", + "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button and clicks explore rooms", + "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > renders formatted body without html correctly", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should display an error if the link has not been clicked", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify using the server's analytics id if present", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders something if member.membership is 'invite' or 'join'", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > returns unavailable for unavailable error", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > should return a toast once one is displayed", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > UIFeature.Widgets disabled > should not show call buttons in a room with more than 2 members", + "test/unit-tests/utils/i18n-helpers-test.ts::roomContextDetails > should return 2-parent variant", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /lenny > should match snapshot with no args", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > renders react button on own actionable event", + "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should not render a room with a activity in the TAC", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for home -> all transition", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on destroy event > updates state and emits beacon liveness changes from true to false", + "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > rounds down to nearest day when more than 24h - 26 hours formats to 1d", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.recent=", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to other rooms for orphaned room", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @_foonetic_xkcd:matrix.org", + "test/unit-tests/components/views/context_menus/WidgetContextMenu-test.tsx:: > revokes permissions", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with empty content body property", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should show a thumbnail while image is being downloaded", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show multiple SSO buttons if multiple identity_providers are available", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device detail expansion > toggles device expansion on click", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > does not render input when set in ForceRoomExportParameters", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > renders an error when updating keywords fails", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed state events", + "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should debounce quick changes", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders user_declined", "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > should invoke the callback with the new room ID for a created room", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a dark theme if system prefers it (via default)", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render + if last", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders when selected option is not in options", - "test/unit-tests/vector/init-test.ts::loadApp > should set window.matrixChat to the MatrixChat instance", - "test/unit-tests/components/views/spaces/ThreadsActivityCentre-test.tsx::ThreadsActivityCentre > should render the threads activity centre button and the display label", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders rejecting message", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > displays device details on main tile click", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > room invite gets added to relevant space filters", + "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders without a room", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a string enum", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should anonymise location of an unknown screen", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote even if I did it on another device", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space does not contain all favourites", + "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for an audio message event", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the set up recovery key when the user clicks on the set up recovery key button", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to the beginning", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should not call onSend when Shift+Enter is pressed", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should render a single pinned event", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null when user inputs any whitespace after the special character", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler > should move calls between rooms when remote asserted identity changes", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > for a maximised (centered) widget > clicking 'un-maximise' should send the widget to the top", + "test/unit-tests/components/views/rooms/RoomHeader/CallGuestLinkButton-test.tsx:: > opens the share dialog with the correct share link in an encrypted room", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > exports when export type is NOT lastNMessages and message count is falsy", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, finished poll", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a multiple removed > removing whole string", + "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > instance should always return the same instance", + "test/unit-tests/components/views/elements/ReplyChain-test.tsx::ReplyChain > getParentEventId > retrieves relation reply from original event when edited", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should apply filters supplied via props > with people filter", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCallEvent() > eventType=org.matrix.msc3401.call > returns correct message for call event when not supported", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.favourite=", + "test/unit-tests/utils/connection-test.ts::createReconnectedListener > should not invoke the callback on a transition from RECONNECTING to ERROR", + "test/unit-tests/utils/notifications-test.ts::notifications > getThreadNotificationLevel > returns NotificationLevel 2 when notificationCountType is 2", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in the only feature group are supported", + "test/unit-tests/utils/WidgetUtils-test.ts::getLocalJitsiWrapperUrl > should generate jitsi URL (for defaults)", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should return false if the objects are the same but different pointers", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > calls onClick on device tile info click", + "test/unit-tests/models/Call-test.ts::ElementCall > get > passes analyticsID through widget URL", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :+1", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.JoinRoomError > does not call showJoinRoomError() when canAskToJoin is true", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account deactivation feature is disabled", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form without change server link when custom URLs disabled", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > not to send chat effects on message sending for threads", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores all the trailing :", + "test/unit-tests/utils/maps-test.ts::maps > EnhancedMap > should proxy remove to delete and return it", + "test/unit-tests/utils/room/inviteToRoom-test.ts::inviteToRoom() > requires registration when a guest tries to invite to a room", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > pretends to request notification permission", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user info", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > respects defaultSize prop", + "test/unit-tests/components/views/dialogs/ChangelogDialog-test.tsx::parseVersion > should return null for invalid version strings", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > does not allow forwarding a poll", + "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > renders the room options context menu when UIComponent customisations enable room options", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for unsupported browser if user accepted already", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Negative longitude and explicit CRS", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getRoomFromCompletion > calls getRooms if no completionId is present and completion starts with #", + "test/unit-tests/utils/device/clientInformation-test.ts::recordClientInformation() > saves client information with url for non-electron clients", + "test/unit-tests/components/views/elements/Field-test.tsx::Field > Feedback > Should mark the feedback as tooltip if custom tooltip set", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > people space does contain people even if they are also shown in a space", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when cross signing feature is not supported", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > handles when a muted room is unknown by the room list", + "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > updates map center when centerGeoUri prop changes", + "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should abbreviate to host if empty pathname", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not clean up listeners even if start was called multiple times", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > sets new beacon event id in local storage", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygAutocomplete-test.tsx::WysiwygAutocomplete > does not show the autocomplete when room is undefined", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > theme selection > system theme > should enable Match system theme", + "test/unit-tests/components/views/elements/ImageView-test.tsx:: > should handle download errors", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > when rendering a pill for a room > when hovering the pill > when not hovering the pill any more > should dimiss a tooltip with the room Id", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not close settings if account not deactivated", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should label with room name", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user timezone if set", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > formatting within a word", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should combine search results when the query is present in multiple sucessive messages", + "test/unit-tests/utils/objects-test.ts::objects > objectHasDiff > should consider pointers when testing values", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a map with markers", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 18443 to 5h 7m 23s left", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when current device is unverified", + "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > cancels changes", + "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return null when the release announcement is disabled", + "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > closes on close button click", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for state event", + "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should allow user to revert from a custom server to the default", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processEmojiReplacement > can change the parent hook state when required", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Sign out > for an OIDC-aware server > other devices > does not allow signing out of all other devices from other sessions context menu", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /shrug > should match snapshot with no args", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to consent", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates in app when clicking view in timeline button", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format multi line code", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with 1 \"other\"", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > should render login page", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage safari", + "test/unit-tests/components/views/settings/AvatarSetting-test.tsx:: > should show error if user tries to use non-image file", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does not show copy link button when not supplied a link", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights my vote if the poll is undisclosed", + "test/unit-tests/utils/exportUtils/exportCSS-test.ts::exportCSS > getExportCSS > supports documents missing stylesheets", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active after 10s of no activity", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > invite to a subspace is only shown at the top level", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > fetchInitialEvent > creates a thread when needed", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendToDevice > sends unencrypted messages", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > when there is an initial event in the room > returns true for a room when the read receipt is earlier than the latest event", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > off should forward the call to VoiceRecording", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should use defaultName from props", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on others actionable event", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > does nothing and returns false for a read receipt update", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should have active class when reversed", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left into no right space", + "test/unit-tests/toasts/IncomingLegacyCallToast-test.tsx:: > renders sound on button when call is silenced", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending redaction", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders an unverifiable device", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > clean > cleans up devices that have never been online", + "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns m.location uri when available", + "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > disables form while device name is saving", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Can reset secret storage", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should search and select a user timezone", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > uses the correct number of highlights", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > global mute", + "test/unit-tests/components/views/location/Map-test.tsx:: > onClick > calls onClick", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > does not add a geolocate control when allowGeolocate is falsy", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.invite=", + "test/unit-tests/languageHandler-test.tsx::languageHandler > getAllLanguagesWithLabels > should handle unknown language sanely", + "test/unit-tests/components/views/beacon/RoomCallBanner-test.tsx:: > call started > doesn't show banner if the call is shown", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at start of single line", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 999999 as 1M", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders a device with no metadata", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > format word at caret position at beginning of new line without previous selection", + "test/unit-tests/utils/objects-test.ts::objects > objectDiff > should indicate when multiple aspects change", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default encryption setting is set to something other than false", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS is loaded during pooling", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should return clientId from localStorage", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display a verify button when the encryption is not set up", "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space doesn't contain rooms/low priority if they are also shown in a space", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when there is not existing selection", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > should not show voice call button in managed hybrid environments", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally master > should collect if cached locally true", - "test/unit-tests/utils/notifications-test.ts::notifications > clearRoomNotification > sends a request even if everything has been read", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms based on thread replies too", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > returns general config when specific config returns an error", - "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without ID", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /op > should reject with usage if given an invalid power level value", - "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > ok to omit the substitution variables and cause object, there just won't be any cause", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays error if changing display name fails", - "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces encryption", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /converttoroom > isEnabled > should return false for LocalRoom", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return true for Room", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without relations > emitCurrent > should not emit any event", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should cache sounds between playbacks", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle room aliases", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > removes geolocation control on geolocation error", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work with floats", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > does nothing when cross signing feature is not supported", - "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > checks whether form submit works as intended", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > with permalink_prefix set > room pill uses matrix.to", - "test/unit-tests/components/views/room_settings/RoomProfileSettings-test.tsx::RoomProfileSetting > handles uploading a room avatar", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when starting a recording > should record normal-quality voice if voice processing is enabled", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > updates map center when centerGeoUri prop changes", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatCount > formats 9999 as 10K", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > formats date correctly when current time is 2 days ago", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return null when the release announcement is disabled", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > keeps asterisks", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is 0 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when a member is added", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is not 1 and translates with fallback locale, attributes fallback locale", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > determineUnreadState > indicates the user has been invited to a channel", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::disambiguateDevices > does not add ambiguous key to unique names", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > text messages > emote", - "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active recently if no activity", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return false when encryption is force disabled", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return true if download keys does not return any user", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and entering a non-email value > should show a message about the wrong format", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected style attributes when avatar url for room is falsy", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on logged in action", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onNotReady() > removes listeners", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with empty content body", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > returns undefined if longitude is not a number", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if none of the users has a device", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastResample > upsamples correctly from Even -> Even", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders stopped UI when a beacon event is replaced", - "test/unit-tests/utils/pillify-test.tsx::pillify > should not double up pillification on repeated calls", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test broken mentions", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows the invite button when canInvite is true", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage estimate", - "test/unit-tests/stores/VoiceRecordingStore-test.ts::VoiceRecordingStore > disposeRecording() > removes room from state when it has a falsy recording", - "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 01-12 in 2-digit mode", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a plus menu for spaces", - "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId(null)", - "test/unit-tests/components/views/elements/QRCode-test.tsx:: > renders a QR with high error correction level", - "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > returns clearWatch function", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > at-room mentions > returns expected attributes when avatar url for room is truthyf", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected style attributes when avatar url matches default", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > should allow auto-completing multiple times with resets between them", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > hides toast when reminder is snoozed", - "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders without children", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > renders email switches correctly when notifications are on for email", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > pinOrUnpinEvent > should do nothing if no event id", - "test/unit-tests/components/views/elements/StyledRadioGroup-test.tsx:: > disables all buttons with disabled prop", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should ignore guest accounts when ignoreGuest is true", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > does not mistake characters in text presentation mode for emoji", - "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should render", - "test/unit-tests/components/views/rooms/memberlist/MemberListHeaderView-test.tsx::MemberListHeaderView > Invite button functionality > Renders enabled invite button when current user is a member and has rights to invite", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the room directory when the explore button is clicked", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 6.0; rv:40.0) Gecko/20100101 Firefox/40.0", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/webp", + "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders text additions", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when MSK/SSK not cached", + "test/unit-tests/theme-test.ts::theme > setTheme > should switch theme if CSS are preloaded", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > values() should return the items in the cache", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForJoinRulesEvent() > returns correct JSX message when room join rule changed to restricted", + "test/unit-tests/components/views/messages/CallEvent-test.tsx::CallEvent > shows a message if the call was redacted", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should apply to word range is within if length 0", + "test/unit-tests/components/views/messages/MStickerBody-test.tsx:: > should show a tooltip on hover", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for space -> space transition", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > escapes longer backticks in between text", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should open the tooltip when hovering a text", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when changed alias and added alt alias", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > with an existing widgetApi with requiresClient = false > should display the \u00bbPopout widget\u00ab button", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should reuse the result", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > should force calls to silent when local notifications are silenced", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > renders expanded events if there are less than props.threshold", + "test/unit-tests/components/views/beacon/BeaconMarker-test.tsx:: > updates with new locations", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return full time & date string otherwise", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for slash separated text", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon owner mxid as beacon name for a beacon without description", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > no switch required, room is in current space", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept #foo:bar.com", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is undefined", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > isOpen > is false if a room other than the current room is open", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp floats", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a knock room > when feature is enabled > should create a knock room with public visibility", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isPinned > should return false if no pinned event", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > when there is a room predecessor > and dynamic room predecessors are enabled > and there is a predecessor in the create event, it should count predecessor highlight", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was missed", "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > isRoomVisible > should return false for a space room", - "test/CreateCrossSigning-test.ts::CreateCrossSigning > should upload", - "test/unit-tests/components/views/settings/devices/SecurityRecommendations-test.tsx:: > renders inactive devices section when user has inactive devices", - "test/unit-tests/hooks/useDebouncedCallback-test.tsx::useDebouncedCallback > should not debounce slow changes", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should remove fresh login flag from session storage", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > renders the room options context menu when UIComponent customisations enable room options", - "test/unit-tests/utils/Feedback-test.ts::shouldShowFeedback > should return true if bug_report_endpoint_url is set and UIFeature.Feedback is true", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Placeholder when { isRichTextEnabled: true } > Should not has placeholder", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > room mentions > returns expected style attributes when avatar url for room is falsy", - "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if some of the users don't have a device", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > renders the date separator correctly", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > fires Action.RoomLoaded", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders menu correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > opens reaction picker on click", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > should default to private room", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > shows direct message and mention buttons when member userId does not match client userId", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > with encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to home space", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > include attachments > does not render input when set in ForceRoomExportParameters", - "test/unit-tests/components/views/settings/tabs/user/AppearanceUserSettingsTab-test.tsx::AppearanceUserSettingsTab > should render", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on B ordering difference", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > hides the message button if the visibility customisation hides all create room features", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > starts update check", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Mozilla/5.0 (Linux; Android 9; SM-G973U Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36", - "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component with the recommended tag", - "test/unit-tests/components/views/rooms/ExtraTile-test.tsx::ExtraTile > hides text when minimized", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > creates a loud notification when enabled", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should add emoji", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayTrimFill > should keep arrays the same", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > does not render space header when room is not a space room", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Edit and save actions > Should cancel edit on cancel button click", - "test/unit-tests/components/views/settings/devices/DeviceSecurityCard-test.tsx:: > renders basic card", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayDiff > should see removed from A->B", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect user agent", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > escape backticks > untoggles correctly it contains varying length of backticks between text", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > should show a toast if the matrix server version is unsupported", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Secret Storage and backup > should collect backup key cached", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is a M_NOT_FOUND error, it should report ready, displayname = MXID and avatar = null", - "test/unit-tests/Image-test.ts::Image > blobIsAnimated > Static WEBP", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills get injected correctly into the DOM", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Extracts the domain name and port when included", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > renders error message when fetching pushers fails", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should disable the checkbox", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles tag substitution with React function component", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > linkification is not applied to code blocks", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time is up > should call stop", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > renders devices in correct order", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > filters ended polls", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when a message has been entered > should render the send button", - "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > updates selected duration", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - Dart/2.18 (dart:io)", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should only call onSend when cmd+enter is pressed when ctrlEnterToSend is true on mac", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Standard behavior > Should have contentEditable at true", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if not all required features in one of the feature groups are supported", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use display name for your others' reactions", - "test/unit-tests/components/structures/RightPanel-test.tsx::RightPanel > renders info from only one room during room changes", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Should respect reply_to_event for Room rendering context", - "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > when there is an error fetching backups > prompts user to set up backup", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > knock rooms > allows to cancel a join request", - "test/unit-tests/components/views/messages/ReactionsRowButton-test.tsx::ReactionsRowButton > renders without a room", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > downsamples correctly from Odd -> Even", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user doesnt have a push rule defined in vector definitions", - "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Emoji when { isRichTextEnabled: false } > Should add an emoji when a word is selected", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code block with language specifier", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should warn for mobile browsers", - "test/unit-tests/components/views/location/Map-test.tsx:: > map bounds > updates map bounds when bounds prop changes", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when spaces are left", - "test/unit-tests/components/views/avatars/WithPresenceIndicator-test.tsx::WithPresenceIndicator > renders only child if presence is disabled", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should open forward dialog", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should close search results when edit is clicked", - "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should only return valid content", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > updates the icon when the encryption status changes", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > extends device with client information when available", - "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for Element Desktop", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no encrypted rooms", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event with a replace relation", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > automatic SSO selection > should automatically setup and redirect to CAS login", - "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications before syncing has started", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > has a phase of null if the panel is open but in another room", - "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > registerForToken > should throw upon non-20x code", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders loading beacon UI for a beacon that has not started yet", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description when editing a closed poll", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > with encryption > should pass the expected placeholder to SendMessageComposer", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > opens map with both beacons in view on first load without initialFocusedBeacon", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth disabled", + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > exports when size limit set in ForceRoomExportParameters is larger than 2000", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h4 with correct attributes", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > correctly orders sequences of transitions by the order of their first event", + "test/unit-tests/stores/room-list/filters/VisibilityProvider-test.ts::VisibilityProvider > instance > should return an instance", "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > copy button is not shown when there is nothing to copy", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses @foo:localhost", - "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event index is initialised > opens event index management dialog", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains all sub-space's child rooms", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles simple variable substitution and translates with fallback locale", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not call onSend when Enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/settings/controllers/DeviceIsolationModeController-test.ts::DeviceIsolationModeController > tracks enabling and disabling > off sets all device isolation mode", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll start event from an active poll detail", - "test/unit-tests/components/views/settings/tabs/room/VoipRoomSettingsTab-test.tsx::VoipRoomSettingsTab > Element Call > correct state > shows disabled when call member power level is 0", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should not collect cross-signing pub key if not set", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > sets filter correctly for all -> space transition", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders own beacon status when user is live sharing", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > does not parse room alias with too many separators", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should do nothing if the content is unmodified", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for m.favourite=", - "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event with two pages server side relations > emitFetchCurrent > should emit the server side events", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Does not show indent or unindent button when outside a list", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > handles when device is falsy", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > updates state when space invite comes in", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user added", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.recent=", - "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > renders alternative key name", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during protocol negotiation", + "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to change the recovery key > should display the recovery key", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on active poll list item click", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > sends an unthreaded read receipt when the Mark All Threads Read button is clicked", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Integer lat and lon", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Renders as expected", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect userText", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns false when value is NaN", + "test/unit-tests/events/forward/getForwardableEvent-test.ts::getForwardableEvent() > returns null for a poll start event", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Recently used emojis are correctly sorted", + "test/unit-tests/utils/DateUtils-test.ts::formatSeconds > correctly formats time with hours", + "test/unit-tests/utils/export-test.tsx::export > maxSize exceeds 8GB", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TF:h", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if no room", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > currentCard > reflects the phase of the current room", + "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > Last activity > renders with month and date when last activity is more than 6 days ago", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate removed properties", + "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > addEncryptedLiveEvent > should add file msgtype event to filtered timelineSet", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Room when user does not have permission to add rooms", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when key backup failed > should show the new recovery method dialog", + "test/unit-tests/components/views/VerificationShowSas-test.tsx::tEmoji > should handle locale en-GB", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for es-ES", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display display a poll event", + "test/unit-tests/utils/beacon/timeline-test.ts::shouldDisplayAsBeaconTile > returns true for a beacon with live property set to true", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a beacon that does not have a shareable location event", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > returns human readable name", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Initialize with content > Should initialize useWysiwyg with plain text content", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing header", + "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default is not set to false", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Desktop > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) ElementNightly/2022091301 Chrome/104.0.5112.102 Electron/20.1.1 Safari/537.36", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > other rooms are added to Notification States for all spaces containing the room exc Home", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > When feature_dynamic_room_predecessors = true > Uses m.predecessor when it's there", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto recovery state to analytics > When Room Key Backup is not enabled > Should report recovery state as Incomplete when USK not cached", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock count is greater than 3 > renders a paragraph with two names and a count", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > triggers the primary action callback with a reason", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should open idp in new tab on click", + "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > leaves space when leave option is clicked", + "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should position at -16px if given no previous position", + "test/unit-tests/MatrixClientPeg-test.ts::MatrixClientPeg > setJustRegisteredUserId", "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > renders last seen ip metadata", - "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by prefix", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > hides if there's no content", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can approve and deny", - "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > all widgets should be in the right container by default", - "test/unit-tests/utils/localRoom/isLocalRoom-test.ts::isLocalRoom > should return true for LocalRoom", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return expected sentence in German without item limit", - "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a function > returns result from incompatibleValue function", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > on should forward the call to VoiceRecording", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > latestLocationState > opens maximised map view on click when beacon has a live location", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export type > exports when export type is NOT lastNMessages and message count is falsy", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse event permalink via arguments", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > room updates > push rules updates > triggers a room update when room mutes have changed", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > without rust store > should be ok if there is non migrated legacy crypto store", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should fire FocusMessageSearch on Ctrl+F when enabled", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results by key", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:roomid/somewhere:example.org/e/event?via=elsewhere.ca", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > when only Own share type is enabled > renders back button from location picker screen", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > waits for messaging when connecting", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Live location share type > user location behaviours > closes and displays error when geolocation errors", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for en-GB", + "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > displays when session is connected to key backup", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for words", + "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if there is a M_NOT_FOUND error, it should report ready, displayname = MXID and avatar = null", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general tab if initialTabId tab cannot be rendered", + "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was ended", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > encryption > asks users to confirm when setting room to encrypted", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo position unavailable error correctly", + "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return null if the other member has no avatar URL", + "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Odd -> Odd", + "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :grinning", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > updates the video room space when the room type changes", + "test/unit-tests/components/views/toasts/GenericToast-test.tsx::GenericToast > should render as expected without detail content", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects if the widget dies", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when the whole input is special case: #roomMention", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > active state > renders live time remaining when displayLiveTimeRemaining is truthy", + "test/unit-tests/components/structures/RoomSearchView-test.tsx:: > should render results when the promise resolves", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when added an alt alias", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > renders rejecting message", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > for an empty DM room list > should return undefined", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element/1.5.0 (Google (Nexus) (5); Android 7.0; RKQ1.200826.002 test test; Flavour FDroid; MatrixAndroidSdk2 1.5.2)", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the closed poll description if we choose it", + "test/unit-tests/utils/export-test.tsx::export > checks if the export format is valid", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Handles an IPv6 address for server name", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should render the component", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > userHasPinOrUnpinPermission > should return true if user can pin or unpin", + "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > getUniqueRoomsWithIndividuals() > excludes rooms that are not found by matrixClient", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state ERROR > isError should return true", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when well-known force_disable is true", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > Migrates baseFontSize > should migrate from V2 font size to V3 using fallback font size", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Ignores m.predecessor if labs flag is off", + "test/unit-tests/utils/oidc/registerClient-test.ts::getOidcClientId() > should throw when registration response is invalid", + "test/unit-tests/components/views/rooms/ReadReceiptGroup-test.tsx::ReadReceiptGroup > > should send an event when clicked", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns ruleIds for added room rules", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > resets countSeen when no toasts remain", + "test/unit-tests/components/views/elements/DesktopCapturerSourcePicker-test.tsx::DesktopCapturerSourcePicker > should contain a screen source in the default tab", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > keywords > updates individual keywords content rules when keywords rule is toggled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking \u00bbmessage\u00ab for a RoomMember should start a DM", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users in the user directory", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > falls back when plural string does not exists at all and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > returns no unsent messages", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > ignores events for irrelevant beacons", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should cancel editing and ask for event removal when message is empty", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with a single, unparticipated thread", + "test/unit-tests/components/views/elements/AccessibleButton-test.tsx:: > calls onClick handler on button mousedown when triggerOnMousedown is passed", + "test/unit-tests/components/views/settings/FontScalingPanel-test.tsx::FontScalingPanel > renders the font scaling UI", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > notification support > maySendNotifications returns true when notification permissions are not granted", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case Knocked > triggers the secondary action callback", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent Jitsi widget with back and leave buttons when not viewing the room", + "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a desktop device type", + "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should not mangle divs", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx::guessServerNameFromRoomId > Returns null when the room ID contains no colon", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when replying to an event > that is a thread > with encryption > should pass the expected placeholder to SendMessageComposer", + "test/unit-tests/createRoom-test.ts::checkUserIsAllowedToChangeEncryption() > should not allow changing when server forces enabled and wk forces disabled encryption", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > test user flow", + "test/unit-tests/utils/DateUtils-test.ts::formatTimeLeft > should format 23 to 23s left", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile renderingType: File > should not display the pinned message badge", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should handle unknown user agent sanely", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcTokenIssuer() > should return undefined when no issuer in localStorage", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new email address", + "test/unit-tests/utils/beacon/bounds-test.ts::getBeaconBounds() > gets correct bounds for beacons in both hemispheres", "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting 3pid invite with no identity server", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders other_device_not_signed_in", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > forwards remove in middle of string with duplicate character", - "test/unit-tests/components/views/rooms/RoomTile-test.tsx::RoomTile > when message previews are not enabled > does not render the room options context menu when knock has been denied", - "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0062-02-05", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors is enabled > passes the flag through to getVisibleRooms", - "test/unit-tests/components/views/settings/LayoutSwitcher-test.tsx:: > compact layout > should be enabled", - "test/unit-tests/contexts/SdkContext-test.ts::SdkContextClass > instance should always return the same instance", - "test/unit-tests/utils/rooms-test.ts::privateShouldBeEncrypted() > should return true when default is not set to false", - "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing in middle of non-editable part appends", - "test/unit-tests/TimezoneHandler-test.ts::TimezoneHandler > Return undefined with an empty TZ", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > orphans space does contain orphans even if they are also shown in all rooms", - "test/unit-tests/widgets/ManagedHybrid-test.ts::isManagedHybridWidgetEnabled > should return true for 1-1 rooms when widget_build_url_ignore_dm is unset", - "test/unit-tests/components/views/location/Map-test.tsx:: > map centering > handles invalid centerGeoUri", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to create pickle key", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is not a reply > should add and remove mentions from the edit", - "test/unit-tests/components/structures/ViewSource-test.tsx::ViewSource > doesn't error when viewing redacted encrypted messages", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption info panel without pending verification", - "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should load font on Action.OnLoggedIn", - "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > when called with an empty array, it should return an empty array", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > sends chat effects", - "test/unit-tests/utils/notifications-test.ts::notifications > notificationLevelToIndicator > returns critical if notification level is Highlight", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > getPlayback > should return a Playback with the data", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > truncates long join,leave repetitions", - "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a high-contrast theme if system prefers it", - "test/unit-tests/Reply-test.ts::Reply > stripHTMLReply > Removes from the input", - "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar > and seeking position with the slider > should update the playback", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > should start OIDC login flow as registration on button click", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > clicking 'maximise' should send the widget to the center", - "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > shows a ghost read-marker when the read-marker moves", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the ban or unban button calls Modal.createDialog with the correct arguments if user is not banned", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns false for a non location event", - "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > signs out directly if no rooms are encrypted", - "test/unit-tests/components/views/dialogs/IncomingSasDialog-test.tsx::IncomingSasDialog > should show some emojis once keys are exchanged", - "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > is empty if 3pid features are disabled", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > removes listener when updateSpace is called", - "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > isVisible > calls isRoomInSpace correctly", - "test/unit-tests/models/Call-test.ts::JitsiCall > get > finds calls", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > test room mention", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data", - "test/unit-tests/components/views/spaces/QuickThemeSwitcher-test.tsx:: > renders dropdown correctly when light theme is selected", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders location publish error", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > should show SSO options if those are available", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > remove at start of string", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > user mentions", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room threads list on button click", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a web device type", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is verified", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > key backup status > does not check key backup status again after check is complete", - "test/unit-tests/components/views/dialogs/ServerPickerDialog-test.tsx:: > when default server config is selected > should submit successfully with a valid custom homeserver", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders with security tab selected", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > does not emit BeaconUpdateError when stopping succeeds and beacon did not have errors", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option for beacon_info event", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > room pill turns message into html", - "test/unit-tests/editor/history-test.ts::editor/history > push, undo, then redo", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is supported but not enabled > renders enable text", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > when developer mode is enabled > and no room is viewed > should not render the \u00bbDeveloper tools\u00ab button", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Mentions and commands > selecting a mention without a href closes the autocomplete but does not insert a mention", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > self locations > uses beacon owner name as beacon name", - "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should throw when oidcClient could not be initialised", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > pinning > renders pins options", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > renders a heading and a paragraph with name and user ID", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > creates pin drop location share event on submission", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for event without content body property", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop", - "test/unit-tests/stores/InitialCryptoSetupStore-test.ts::InitialCryptoSetupStore > should fail to retry once complete", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > sendContentToRoom > should fall back to m.file for invalid audio files", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders user timezone if set", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an error > renders other errors", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should strip single / from message prefixed with //", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns an empty string if we are not handling a user, room or at-room type", - "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders device and correct security card when device is unverified", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing trailer", - "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMembers > should update on RoomState.Members events", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a basic string", - "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders with a logo by default", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Device verification > renders device verification cta on other sessions when current session is verified", - "test/unit-tests/utils/arrays-test.ts::arrays > arraySmoothingResample > upsamples correctly from Even -> Odd", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders loading beacon UI for a beacon that has not started yet", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayIntersection > should return an empty array on no matches", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > should attempt token login", - "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > stopping errors > starts rendering stopping error on beaconUpdateError emit", - "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and the max length limit has been disabled > and there is an audio update and time left > should not call stop", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > updates ranges on an existing list based on the key if there's no other changes", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > displays error when map emits an error", + "test/unit-tests/components/views/room_settings/UrlPreviewSettings-test.tsx::UrlPreviewSettings > should display the correct preview when the room is unencrypted and the url preview is enabled", + "test/unit-tests/components/views/settings/devices/DeviceVerificationStatusCard-test.tsx:: > renders a verified device", + "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has been started and there is a profile, it should return the profile display name and avatar", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > forwarding beacons > opens forward dialog with correct event", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > translates a basic string and translates with fallback locale", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts literal HTML topic to HTML", + "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > should render general settings tab when no initialTabId", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when caret is not at beginning of the text", + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should not render an avatar or link when called with inMessage = false and shouldShowPillAvatar = false", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sets the correct thread in the room view store", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > calls client.sendMessage with > a null argument if SendMessageParams has relation but rel_type does not match THREAD_RELATION_TYPE.name", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should set logged in and start MatrixClient", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.video event type", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline updates without a live event", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is 144 hours ago", + "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with both the legacy and new keys removed", + "test/unit-tests/Notifier-test.ts::Notifier > triggering notification from events > does not create notifications for non-live events (scrollback)", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > space auto switching tests > switch to first valid space when selected metaspace is disabled", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix-prefixed domains > accepts matrix123.org", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > does not show pin option when user does not have rights to pin", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > mapGeolocationError > maps geo timeout error correctly", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at end", + "test/unit-tests/components/views/audio_messages/RecordingPlayback-test.tsx:: > disables play button while playback is decoding", + "test/unit-tests/Notifier-test.ts::Notifier > group call notifications > should not show toast when group call is already connected", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when user ids change > user swapped", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include avatars", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element call room", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > renders banned users", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > ends the call immediately if the session ended", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Closes the dialog when the form is submitted with a valid key", + "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not render the component when not ready", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > displays no results message when there are no devices", + "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should execute the function twice if the result was forgotten", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return false for LocalRoom", + "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence true) > does order members correctly > by power level", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return true on values in a number enum", + "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on web and not on macOS", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > shows the lockout page when a second tab opens > during crypto init", + "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should show feedback prompt", + "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding msisdn", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room ordered by last activity 2", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > no-ops for idential changes", + "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should not clamp numbers in range", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > people settings tab > renders when enabled and room join rule is knock", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should set lastSuccessful=true on non-last event if last event is not eligible for special receipt", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > emits ViewRoomError if the alias lookup fails", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag true on A length > B length", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > with virtual rooms > checks for a virtual room on room event", + "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > updates list order when devices change", + "test/unit-tests/HtmlUtils-test.tsx::topicToHtml > converts plain text topic with emoji to HTML", + "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > marks the room as read", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 verified/untrusted: returns 'warning', DM = true", + "test/unit-tests/components/views/settings/tabs/room/BridgeSettingsTab-test.tsx:: > renders when room is not bridging messages to any platform", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving right when right is undefined", + "test/unit-tests/components/structures/LeftPanel-test.tsx::LeftPanel > renders filter container when enabled by UIComponent customisations", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > returns deviceType unknown when user agent is falsy", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should pass event to posthog", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > fails to connect if the widget returns an error", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support block katex", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > calls using legacy or jitsi", + "test/unit-tests/utils/crypto/deviceInfo-test.ts::getDeviceCryptoInfo() > should return undefined on clients with no crypto", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > @room pill", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders insecure_channel_detected", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object for an emoji suggestion", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when creating a cache with 0 capacity it should raise an error", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > without requests to join > does not render if user can approve and deny", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows reply button when we can reply", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > spoiler", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after 10s > the last Jitsi widget should be removed", + "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > should re-render favicon when setting error status", + "test/unit-tests/utils/direct-messages-test.ts::direct-messages > startDmOnFirstMessage > if no room exists > should work when resolveThreePids raises an error", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 1 verified: returns 'verified', self-trust = true, DM = false", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > should intercept clicks with a ViewUser dispatch", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns true for event with reference relation", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should not display 'Continue' button on permission load", + "test/unit-tests/components/views/location/MapError-test.tsx:: > renders correctly for MapStyleUrlNotConfigured", + "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has badge style for notification", + "test/unit-tests/stores/TypingStore-test.ts::TypingStore > setSelfTyping > in typing state true > should change to true when setting true", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > add widget to top container", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > doesn't change filter when changing showAllRooms mode to false", "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > does not allow opening a plain message in open street maps", - "test/unit-tests/Notifier-test.ts::Notifier > onEvent > should not evaluate events from the thread list fake timeline sets", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getProfileLookupError > should return undefined if a profile was successfully fetched", - "test/unit-tests/accessibility/KeyboardShortcutUtils-test.ts::KeyboardShortcutUtils > correctly filters shortcuts > when on web and not on macOS", - "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with pin drop share type enabled > renders share type switch with own and pin drop options", - "test/unit-tests/components/views/dialogs/UserSettingsDialog-test.tsx:: > renders labs tab when some feature is in beta", - "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should render empty state", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditContent() > returns false for state event", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > upgrades room when changing join rule to restricted", + "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should not be ok if sync store but no crypto store", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > can return a single empty div in case where room.getMember is not falsy", + "test/unit-tests/components/views/elements/RoomTopic-test.tsx:: > should capture permalink clicks", + "test/unit-tests/utils/DateUtils-test.ts::getMonthsArray > should return 01-12 in 2-digit mode", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Misc > should parse the user agent correctly - ", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > react button > opens reaction picker on click", + "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Multiple unknown params", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > meets room requirements if there are enough rooms", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > guest account > should restore guest accounts when ignoreGuest is false", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Notify the timeline to resize > should notify the timeline to resize when we display the banner", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > remove maximised when pinning (same widget)", + "test/unit-tests/languageHandler-test.tsx::languageHandler > UserFriendlyError > includes underlying cause error", + "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > deselects all sessions when all sessions are selected", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > does not send any requests if everything has been read", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > Multi-tab lockout > waits for other tab to stop during startup", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message pinning > pins event on pin option click", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > and forgetting the read markers, should send the stored marker again", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > readEventRelations > reads related events with custom parameters", + "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Header > doesn't send a receipt if no room is in context", + "test/unit-tests/utils/localRoom/isRoomReady-test.ts::isRoomReady > for a room with an actual room id > should return false", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders invite message", + "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on logged in action", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should persist token when encrypting the token fails", + "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the pusher status when clicked", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should render selected items passed in via props", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow adding a new phone number", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add pasted values", + "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should call onForgotRecoveryKey when the 'Forgot recovery key?' is clicked", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should not show knock room join rule when upgrade is disabled", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should override defaultEncrypted when server .well-known forces disabled encryption", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles text in tags", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and when beacon liveness changes from false to true", + "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for fr", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Each button should display the tooltip on mouse over when not disabled", "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition when unmounted", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > updates filter correctly for orphans -> people transition", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > only creates a single history entry if given the same card twice", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders an unknown device type", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by last active timestamp", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should correctly wrap format bold", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should identify using the server's analytics id if present", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should close settings if account deactivated", - "test/unit-tests/stores/notifications/NotificationColor-test.ts::NotificationLevel > humanReadableNotificationLevel > correctly maps the output", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > displays advanced section toggle when join rule is public", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is not knock > should set the visibility to private by default", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Plus menu > disables Add Room when user does not have permission to add rooms", - "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > UIComponents > Main menu > does not render Add Space when user does not have permission to add spaces", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should open or close the message pinning list", - "test/unit-tests/utils/Singleflight-test.ts::Singleflight > should throw for bad context variables", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > shows the open poll description if we choose it", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when forExport is true > formats date in full when current time is the exact same moment", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > should show error dialog without submit debug logs option when networking error (Error) occurs", - "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Replaces the old room when a newer one joins", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert at start", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should use 'You' for your own reactions", - "test/unit-tests/components/views/settings/encryption/ChangeRecoveryKey-test.tsx:: > flow to set up a recovery key > should display errors from bootstrapSecretStorage", - "test/unit-tests/utils/objects-test.ts::objects > objectKeyChanges > should return an empty set if no properties changed", - "test/unit-tests/utils/room/canInviteTo-test.ts::canInviteTo() > when user does not have permissions to issue an invite for this room > should return true when room is a public space", - "test/unit-tests/stores/room-list/algorithms/RecentAlgorithm-test.ts::RecentAlgorithm > sortRooms > orders rooms without messages first", - "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is not ready > should render when keys are backed up", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should do nothing for a range with length 0 at initialisation", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a non-resize event occurred in UIStore > should still display the sticker picker", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > context switching tests > last viewed room is target space is no longer in that space", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for pinnable event types", - "test/unit-tests/models/Call-test.ts::ElementCall > create call > don't sent notify event if there are existing room call members", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > renders switches correctly", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Navigator Storage > should collect navigator storage persisted", - "test/unit-tests/stores/LifecycleStore-test.ts::LifecycleStore > dismisses toast on accept button", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > createLiveBeacon > creates a live beacon without error when no beacons exist for room", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > the perParticipantE2EE url flag is used in encrypted rooms while respecting the feature_disable_call_per_sender_encryption flag", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > editMessage > Should cancel editing and ask for event removal when message is empty", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > returns integer values for portrait images", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with a content body", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @TT:h", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders check_code_mismatch", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show continue button when oidc native flow is correctly configured", - "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at end of string", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return an empty array if functional members state event does not have a service_members field", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on mount > handles when user has no push rules event in account data", - "test/unit-tests/vector/getconfig-test.ts::getVectorConfig() > adds trailing slash to relativeLocation when not an empty string", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /part > should part room matching alias if found", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > 3pids > should allow removing an existing phone number", - "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return false when there is no force_disable property", - "test/unit-tests/components/views/settings/devices/DeviceDetailHeading-test.tsx:: > clicking submit updates device name with edited value", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should render", - "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be disabled", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile thread summary > removes the thread summary when thread is deleted", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > Right button > should display View all button if the right panel is closed", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should warn when trying to create a room with an invalid form", - "test/unit-tests/utils/direct-messages-test.ts::direct-messages > createRoomFromLocalRoom > should do nothing for room in state 1", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show SSO button if that flow is available", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > home space contains invites", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > with a pickle key > should create new matrix client with credentials", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows emoting with non-text parts", - "test/unit-tests/models/Call-test.ts::ElementCall > get > passes feature_allow_screen_share_only_mode setting to allowVoipWithNoMedia url param", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for im.vector.fake.direct=", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > renders invite menu item when UIComponent customisations enables room invite", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for room member event", - "test/unit-tests/stores/room-list/algorithms/list-ordering/NaturalAlgorithm-test.ts::NaturalAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > throws for an unhandled update cause", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FF:h", + "test/unit-tests/components/views/messages/MKeyVerificationRequest-test.tsx::MKeyVerificationRequest > displays a request from me", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should suggest e-mail even if lookup fails", + "test/unit-tests/components/views/rooms/VoiceRecordComposerTile-test.tsx:: > send > should send the voice recording", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clickign with a drag motion below the threshold of 5px, it should pass the click to the children", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > enables OK button when labs flag is toggled to enabled", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > clicking the invite button will call MultiInviter.invite", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > stops live beacons when geolocation permissions are revoked", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > default error code mapper maps error codes correctly", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is alphabetical > handleRoomUpdate > time and read receipt updates > re-sorts category when updated room has not changed category", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; OpenBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: OpenBSD", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving down > Should not moving when the content has changed", + "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > If the predecessor room is not found > Shows an error if there are no via servers", + "test/unit-tests/modules/AppModule-test.ts::AppModule > constructor > should call the factory immediately", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > ensureListRegistered > creates a new list based on the key", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving to the start when all is undefined", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should change candidate server when highest power level user leaves the room", + "test/unit-tests/components/views/rooms/RoomListHeader-test.tsx::RoomListHeader > renders a plus menu for spaces", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with true if RoomState.newMember fires", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is an int in range", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call ended cleanly", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > revokeTokens() > should still attempt to revoke refresh token when access token revocation fails", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores extra answers", + "test/unit-tests/utils/arrays-test.ts::arrays > arrayFastClone > should break pointer reference on source array", + "test/unit-tests/audio/VoiceRecording-test.ts::VoiceRecording > when recording > and there is an audio update and time left > should not call stop", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > code in backticks", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling line breaks > before empty line", + "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > renders map correctly", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > does not force a reload on sync unless the client is coming back online", + "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders when selected option is not in options", + "test/unit-tests/Unread-test.ts::Unread > eventTriggersUnreadCount() > returns false without checking for renderer for events with type m.room.third_party_invite", + "test/unit-tests/stores/room-list/previews/MessageEventPreview-test.ts::MessageEventPreview > getTextFor > when called with an event with empty content should return null", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > goes to room of latest beacon with location publish error when clicked", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should return `scalar_token` from API /register", + "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > handles homeserver too old error", + "test/unit-tests/utils/SearchInput-test.ts::transforming search term > should return the original search term if the search term is a permalink and the primaryEntityId is null", + "test/unit-tests/components/views/dialogs/AskInviteAnywayDialog-test.tsx::AskInviteaAnywayDialog > remembers to not warn again", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Nulls in location are not shown in URI", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should not consider IPv4 hostnames with ports", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with a string calls the onChange argument", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > falls back to the completion for a room if completion starts with #", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows timer if the call is connected", + "test/unit-tests/notifications/ContentRules-test.ts::ContentRules > parseContentRules > should handle there being no keyword rules", + "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call was answered elsewhere", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > pluralization > _tDom() > translated correctly when plural string exists for count", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > should add to selection on click of user tile", + "test/unit-tests/components/structures/UploadBar-test.tsx::UploadBar > should pluralise 5 files correctly", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Own location share type > user location behaviours > disables submit button until geolocation completes", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > in state CREATING > isCreated should return false", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > replacements in the wrong order", + "test/unit-tests/components/views/rooms/wysiwyg_composer/SendWysiwygComposer-test.tsx::SendWysiwygComposer > Should render WysiwygComposer when isRichTextEnabled is at true", + "test/unit-tests/components/views/location/Map-test.tsx:: > children > renders without children", + "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should create a public room", + "test/unit-tests/components/views/dialogs/RoomSettingsDialog-test.tsx:: > Settings tabs > renders bridges settings tab when enabled", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept repeated TLDs (e.g .org.uk)", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100 when val > 100", + "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > renders null when beacon has no location", + "test/unit-tests/hooks/useProfileInfo-test.tsx::useProfileInfo > should recover from a server exception", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > code blocks with language specifier", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > ignores votes that arrived after the first end poll event", + "test/unit-tests/utils/DateUtils-test.ts::formatDateForInput > should format 0062-02-05", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processMention > returns early when suggestion is null", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when participants change", + "test/unit-tests/Notifier-test.ts::Notifier > local notification settings > does not create local notifications event after a cached sync", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders an undisclosed, unfinished poll", + "test/unit-tests/components/views/location/LocationPicker-test.tsx::LocationPicker > > for Pin drop location share type > submits location", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > active space switching tests > switch to home space", + "test/unit-tests/createRoom-test.ts::canEncryptToAllUsers > should return false if some of the users don't have a device", + "test/unit-tests/settings/watchers/FontWatcher-test.tsx::FontWatcher > should reset font on Action.OnLoggedOut", + "test/unit-tests/utils/numbers-test.ts::numbers > percentageWithin > should work within 0-100", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ignores duplicate :NUM (double port specifier)", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > return true when we don't have any receipt for the thread", + "test/unit-tests/Lifecycle-test.ts::Lifecycle > logout() > should call logout on the client when oidcClientStore is falsy", + "test/unit-tests/components/structures/ContextMenu-test.ts::ContextMenu > toLeftOrRightOf > when there is more space to the right > should return a position to the right", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > Warnings are displayed in consistent order > Ensure existing prompt stays even if a new violation with lower lexicographic order detected", + "test/unit-tests/components/views/settings/CrossSigningPanel-test.tsx:: > when cross signing is ready > should render when keys are backed up", + "test/unit-tests/components/views/settings/SettingsHeader-test.tsx:: > should render the component with the recommended tag", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > orphans space does contain orphans even if they are also shown in all rooms", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > attachMentions with edit > mentions do not propagate", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is not the latest beacon for a user", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > getStoredOidcClientId() > should throw when no clientId in localStorage", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > must not allow multiple modules to provide experimental extension", + "test/unit-tests/components/views/settings/tabs/room/RolesRoomSettingsTab-test.tsx::RolesRoomSettingsTab > Banned users > should not render banned section when no banned users", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for rooms without beacons", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when editing with plain text", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the device keys", + "test/unit-tests/components/views/spaces/AddExistingToSpaceDialog-test.tsx:: > should not show 'no results' if we have results to show", "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should rotate the pinned events when the banner is clicked", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > client information > when device client information feature is enabled > saves client information on start", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display display a poll event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if room clipboardData files and types are empty", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > renders invite option when space is public", - "test/unit-tests/components/views/settings/devices/DeviceTypeIcon-test.tsx:: > renders a desktop device type", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should handle decimal versions", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > clicking retry should set the room state to new dispatch a local room event", - "test/unit-tests/components/views/settings/SecureBackupPanel-test.tsx:: > handles error fetching backup", - "test/unit-tests/favicon-test.ts::Favicon > should draw a badge if called with a non-zero value", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > export format > sets export format on radio button click", - "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > handles errors during reciprocation", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return false for LocalRoom", - "test/unit-tests/components/views/context_menus/SpaceContextMenu-test.tsx:: > add children section > opens create room dialog on add room button click", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > with promptBeforeInviteUnknownUsers = true and > confirming the unknown user dialog > should invite all users", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > should show knock room join rule when upgrade is enabled", - "test/unit-tests/components/views/messages/DecryptionFailureBody-test.tsx::DecryptionFailureBody > should handle historical messages with no key backup", - "test/unit-tests/audio/Playback-test.ts::Playback > prepare() > does not try to re-decode audio", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > should still start a native call", - "test/unit-tests/components/views/settings/devices/DeviceDetails-test.tsx:: > changes the local notifications settings status when clicked", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > default_country_code > should respect configured default country code for DE", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > connects muted", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > should empty search field when the timeline rendering type changes away", - "test/unit-tests/utils/location/locationEventGeoUri-test.ts::locationEventGeoUri() > returns legacy uri when m.location content not found", - "test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx::KeyboardUserSettingsTab > renders list of keyboard shortcuts", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > get() should return undefined", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > when viewing a call without a broadcast, it should not raise an error", - "test/unit-tests/utils/UrlUtils-test.ts::abbreviateUrl > should not abbreviate if has path parts", - "test/unit-tests/components/views/beta/BetaCard-test.tsx:: > Feedback prompt > should not show feedback prompt if feedback is disabled", - "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > knock rooms > when disabling feature > should not skip to auto join", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > uses shared as default history visibility when no state event found", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > listens for client events", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when partially crap m.direct content appears > should log the invalid content", - "test/unit-tests/components/views/dialogs/UnpinAllDialog-test.tsx:: > should render", - "test/unit-tests/components/views/rooms/ReadReceiptMarker-test.tsx::ReadReceiptMarker > should update readReceiptPosition to current position", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns kick, redact messages, ban buttons if conditions met", - "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQsFromFragment", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > unverified sessions toasts > bulk unverified sessions toasts > shows toast with unverified devices at app start", - "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should find a room by the 'all rooms' fallback", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if there's an ongoing (pinned) call", - "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > When feature_dynamic_room_predecessors = true > Passes the feature flag on to the client when asking for visible rooms", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRange > should do nothing for a range with length 0 at initialisation", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /ban > isEnabled > should return true for Room", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should toggle a selected item when a suggestion is clicked", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should call onSend when Enter is pressed when ctrlEnterToSend is false", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should handle lots of membership events quickly", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A second instance waits for the first to shut down", + "test/unit-tests/components/views/dialogs/ConfirmRedactDialog-test.tsx::ConfirmRedactDialog > should raise an error for an event without ID", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should be possible to disable the checkbox", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders nothing if member.membership is undefined", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work when moving left and some orders are undefined", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > remembers the event being replied to when swapping rooms", + "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > does not show account management link when not available", + "test/unit-tests/Reply-test.ts::Reply > getParentEventId > returns id of the event being replied to", + "test/unit-tests/components/views/dialogs/security/ExportE2eKeysDialog-test.tsx::ExportE2eKeysDialog > should complain if passphrases don't match", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > search > has the search field", + "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > calls update callback when a toast is added", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > breacrumbs > should send breadcrumb updates over the IPC", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > basic text handling > at end of single line", + "test/unit-tests/modules/ModuleRunner-test.ts::ModuleRunner > extensions > should return default values when no experimental extensions are provided by a registered module", + "test/unit-tests/utils/maps-test.ts::maps > mapDiff > should indicate added properties", + "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders without children", + "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > Event verification > shows the correct reason code for 0 (Unknown error)", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders location publish error", + "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > getOrFetchProfile > should return a profile from the API and cache it", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > restarts publishing a beacon after resetting location publish error", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > editable content helpers > canEditOwnContent() > returns false for event that is not room message", + "test/unit-tests/toasts/SetupEncryptionToast-test.tsx::SetupEncryptionToast > should render the 'key storage out of sync' toast", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles noisy", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows ended vote counts of different numbers", + "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should logout directly if no encrypted rooms", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > fails to disconnect if the widget returns an error", + "test/unit-tests/theme-test.ts::theme > setTheme > applies a custom Compound theme", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > can render replies", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing trailer", + "test/unit-tests/events/RelationsHelper-test.ts::RelationsHelper > when there is an event without ID > should raise an error", + "test/unit-tests/components/views/location/SmartMarker-test.tsx:: > creates a marker on mount", + "test/unit-tests/settings/controllers/IncompatibleController-test.ts::IncompatibleController > incompatibleSetting > when incompatibleValue is set to a value > returns false when setting value is not true", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > append text to existing document", + "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect knock rooms in v7 and above", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders check code confirmation", + "test/unit-tests/utils/device/snoozeBulkUnverifiedDeviceReminder-test.ts::snooze bulk unverified device nag > isBulkUnverifiedDeviceReminderSnoozed() > returns true when snooze timestamp in storage is less than a week ago", + "test/unit-tests/components/views/location/ZoomButtons-test.tsx:: > renders buttons", + "test/unit-tests/components/views/location/LocationViewDialog-test.tsx:: > renders marker correctly for self share", + "test/unit-tests/components/views/dialogs/devtools/Crypto-test.tsx:: > > should display loading spinner while loading", + "test/unit-tests/components/views/messages/EncryptionEvent-test.tsx::EncryptionEvent > for an encrypted room > should show the expected texts", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on liveness change event > updates state and emits beacon liveness changes from true to false", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns an object when a @userMention is followed by other text", + "test/unit-tests/stores/WidgetLayoutStore-test.ts::WidgetLayoutStore > when feature_dynamic_room_predecessors is enabled > passes the flag in to getVisibleRooms", + "test/unit-tests/settings/watchers/ThemeWatcher-test.tsx::ThemeWatcher > should choose a light theme if system prefers it (explicit)", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > plaintext messages > escapes angle brackets", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a persistent app > should render", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > with an invited email > when client has no identity server connected > renders join button", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > with live location disabled > goes to labs flag screen after live options is clicked", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room pinned messages on button click", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should pick prefer candidate servers with higher power levels", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and adding 2 additional items > get() should return undefined for expired items", + "test/unit-tests/components/views/settings/UserProfileSettings-test.tsx::ProfileSettings > displays confirmation dialog if rooms are encrypted", + "test/unit-tests/components/views/dialogs/LogoutDialog-test.tsx::LogoutDialog > Prompts user to set up backup if there is no backup on the server", + "test/unit-tests/components/views/spaces/SpaceSettingsVisibilityTab-test.tsx:: > for a public space > Access > renders error message when update fails", + "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles a summary length = 2, with many \"others\"", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Returns results with search string in same place according to key index", + "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return empty string when given empty list", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows view in room button when the event is a thread root", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canPin > should return false if event is not pinnable", + "test/unit-tests/editor/history-test.ts::editor/history > history step is added at word boundary", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > decryption > decrypts event if needed", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > shows chat effects on message sending", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the change recovery key panel when the user clicks on the change recovery button", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > open as map link > allows opening a beacon that has a shareable location event", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > getMediaConfig > gets the media configuration", + "test/unit-tests/utils/arrays-test.ts::arrays > concat > should work for empty arrays", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /remove > isEnabled > should return true for Room", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > returns false if it is not a paste event", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > displaynames containing a closing square bracket work", + "test/unit-tests/components/views/settings/encryption/RecoveryPanel-test.tsx:: > should allow to change the recovery key when everything is good", + "test/unit-tests/editor/model-test.ts::editor/model > plain text manipulation > insert text into empty document", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > renders thread button on own actionable event", + "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached, even if other RoomState.newMember events fire", "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > buildValidatedConfigFromDiscovery() > should validate delegated oidc auth", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > hides unread notification badge", - "test/unit-tests/utils/leave-behaviour-test.ts::leaveRoomBehaviour > returns to the home page after leaving a room outside of a space that was being viewed", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > individual notification level settings > synced rules > sets the UI toggle to rule value when no synced rule exist for the user", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > toggleInlineFormat > works for around pills", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with changed power level", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows un-voting by passing an empty vote", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom(), sets promptAskToJoin state to false and shows an error dialog", - "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > navigates in app when clicking view in timeline button", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with a room > Ignore > cancels ignoring the user", - "test/unit-tests/components/views/context_menus/ThreadListContextMenu-test.tsx::ThreadListContextMenu > does not render the permalink", - "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @FF:h", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to destroy pickle key", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should revoke a bound email address", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when room is tombstoned", - "test/unit-tests/components/views/settings/EventIndexPanel-test.tsx:: > when event indexing is fully supported and enabled but not initialised > displays an error when no event index is found and enabling not in progress", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > filtering > filters correctly for Unverified", - "test/unit-tests/utils/DateUtils-test.ts::formatDuration() > 24 hours formats to 1d", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders map without markers when no live beacons remain", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > should call prepareToEncrypt when the user is typing", - "test/unit-tests/ContentMessages-test.ts::ContentMessages > getCurrentUploads > should return only uploads for no relation when not passed one", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 and 2 > should render both contents", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should handle an empty hash", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a public room > should create a public room", - "test/unit-tests/email-test.ts::looksValid > for \u00bba@b.org\u00ab should return true", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > WebLayout > should send layout Group correctly", - "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when participants change", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with multiple threads", - "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string with weekday if date is within last 6 days", - "test/unit-tests/components/views/settings/tabs/room/AdvancedRoomSettingsTab-test.tsx::AdvancedRoomSettingsTab > displays message when room cannot federate", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasOrderChange > should flag false on no ordering difference", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test room mention", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders m.emote correctly", - "test/unit-tests/components/views/settings/devices/DeviceTile-test.tsx:: > separates metadata with a dot", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login succeeds > should persist login credentials", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity is not trusted, and device signed", - "test/unit-tests/components/views/elements/EffectsOverlay-test.tsx:: > should render", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > rfc5870 6.4 Multiple unknown params", - "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > when message is replying > should retain parent event sender in mentions when adding a mention", - "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that links in codeblock are not modified", - "test/unit-tests/utils/threepids-test.ts::threepids > resolveThreePids > should return the same list for non-3rd-party members", - "test/unit-tests/components/views/spaces/QuickSettingsButton-test.tsx::QuickSettingsButton > should render the quick settings button in expanded mode", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > durationSeconds should return the VoiceRecording value", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders unexpected_message_received", - "test/unit-tests/PreferredRoomVersions-test.ts::doesRoomVersionSupport > should detect support properly", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > EventTile in the right panel > renders the sender for the thread list", - "test/unit-tests/theme-test.ts::theme > setTheme > should switch to dark", - "test/unit-tests/components/views/rooms/wysiwyg_composer/EditWysiwygComposer-test.tsx::EditWysiwygComposer > Should not render the component when not ready", - "test/unit-tests/components/views/elements/EventListSummary-test.tsx::EventListSummary > handles invitation plurals correctly when there are multiple users", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should apply highlights to HTML messages", - "test/unit-tests/utils/permalinks/MatrixToPermalinkConstructor-test.ts::MatrixToPermalinkConstructor > parsePermalink > should raise an error for something that is not an URL", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > tracks layout", - "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > autofocuses the poll topic on mount", - "test/unit-tests/stores/ReleaseAnnouncementStore-test.tsx::ReleaseAnnouncementStore > should return the next feature when the next release announcement is called", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert room pill without splitting at the colon", - "test/unit-tests/components/views/elements/LearnMore-test.tsx:: > renders button", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > when there is a RoomView > and there is a Jitsi widget from another user > and the current user adds a Jitsi widget after 10s > the last Jitsi widget should be removed", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test user mentions", - "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Tracking > Should not identify the user to posthog if anonymous", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return true if all conditions are met", - "test/unit-tests/utils/MessageDiffUtils-test.tsx::editBodyDiffToHtml > renders inline element additions", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > triggers the primary action callback for denied request", - "test/unit-tests/utils/location/map-test.ts::createMapSiteLinkFromEvent > returns OpenStreetMap link if event contains geo_uri", - "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show form with change server link", "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I voted but the poll is undisclosed", - "test/unit-tests/components/structures/UserMenu-test.tsx:: > logout > should show dialog if some encrypted rooms", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > insert user pill", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If two new instances start concurrently, only one wins", - "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > renders audio processing settings", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should moving up", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; Linux i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: Linux", - "test/unit-tests/dispatcher/dispatcher-test.ts::MatrixDispatcher > should handle AsyncActionPayload", - "test/unit-tests/utils/location/parseGeoUri-test.ts::parseGeoUri > Zero altitude is not unknown", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns false for undecrypted event", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > functions correctly mounted > correctly persists state to and from localStorage", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > hierarchy resolution update tests > onRoomsUpdate() > emits events for parent spaces when child room is added", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::findSuggestionInText > returns null for slash separated text", - "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise on onerror call", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > set up encryption > does not show any toasts when no rooms are encrypted", - "test/unit-tests/Avatar-test.ts::avatarUrlForRoom > should return the HTTP source if the room provides a MXC url", - "test/unit-tests/components/views/rooms/NotificationBadge/UnreadNotificationBadge-test.tsx::UnreadNotificationBadge > activity renders unread notification badge", - "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not insert div and br tags when enter is pressed when ctrlEnterToSend is true", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should report a failure for an event that was reported before a logout/login cycle", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders plain-text m.text correctly > should pillify a room alias permalink", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/usePlainTextListeners-test.tsx::setContent > calling with no argument and no editor ref does not call onChange", - "test/unit-tests/hooks/useNotificationSettings-test.tsx::useNotificationSettings > correctly generates change calls", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Basic Information > should collect if not touchInput", - "test/unit-tests/vector/routing-test.ts::getInitialScreenAfterLogin > when current url has a hash > sets an initial screen in session storage", - "test/unit-tests/vector/platform/WebPlatform-test.ts::WebPlatform > app version > pollForUpdate() > should return error when version check fails", - "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should export", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > should start matrix client", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > room actions > leave_room > for a room > should leave room and dispatch after leave action", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Android > should parse the user agent correctly - Element dbg/1.5.0-dev (Xiaomi Mi 9T; Android 11; RKQ1.200826.002 test-keys; Flavour GooglePlay; MatrixAndroidSdk2 1.5.2)", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > kills event listeners on unmount", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForPowerEvent() > returns correct message for a single user with power level changed to the default", - "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a full m.asset event", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status queued", - "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > displays the next user when the current user's identity is approved", - "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered disabled if there is no matrix client", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should support block katex", - "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering a new password > and confirm the email link and submitting the new password > should send the new password (once)", - "test/unit-tests/utils/DMRoomMap-test.ts::DMRoomMap > when m.direct has valid content > getRoomIds should return the room Ids", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > renders spinner while verifying", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > handles 3 joined top level spaces", - "test/unit-tests/contexts/ToastContext-test.ts::ToastRack > calls update callback when a toast is added", - "test/unit-tests/utils/membership-test.ts::waitForMember > resolves with false if the timeout is reached", - "test/unit-tests/components/views/dialogs/devtools/Event-test.tsx:: > should render", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > should parse html iframe snippets", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > Does not render a SendMessageComposer or MessageComposerButtons when user has no permission", - "test/unit-tests/components/views/rooms/LegacyRoomList-test.tsx::LegacyRoomList > Rooms > when room space is active > renders add room button and clicks explore rooms", - "test/unit-tests/stores/OwnProfileStore-test.ts::OwnProfileStore > if the client has not yet been started, the displayname and avatar should be null", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles variable substitution with React function component and translates with fallback locale, attributes fallback locale", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > on room membership changes > ignores events for rooms without beacons", - "test/unit-tests/utils/numbers-test.ts::numbers > clamp > should clamp floats", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > does nothing if given an invalid state", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > disconnects when we leave the room", - "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > does not unsilence calls when local notifications are silenced", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > acknowledges mute_device widget action", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should not send empty html message", - "test/unit-tests/editor/model-test.ts::editor/model > auto-complete > type after inserting pill", - "test/unit-tests/utils/DateUtils-test.ts::formatFullTime > correctly formats 24 hour mode", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > does not honour m.space.parent if sender does not have permission in parent space", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx::isMuted > when powerLevelContent.events is undefined, uses .events_default", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /addwidget > isEnabled > should return false for LocalRoom", - "test/unit-tests/utils/AutoDiscoveryUtils-test.tsx::AutoDiscoveryUtils > authComponentStateForError > should return expected error for the registration page", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v4 tests > should properly parse IPs v4 with port as the domain name with attached", - "test/unit-tests/editor/serialize-test.ts::editor/serialize > feature_latex_maths > should not mangle code blocks", - "test/unit-tests/components/views/toasts/VerificationRequestToast-test.tsx::VerificationRequestToast > should render a self-verification", - "test/unit-tests/components/structures/auth/LoginSplashView-test.tsx:: > Shows migration progress", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > onAction() > logout > should destroy pickle key", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > without a room > renders encryption verification panel with pending verification", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > renders a warning message when poll has undecryptable relations", - "test/unit-tests/components/views/messages/LegacyCallEvent-test.tsx::LegacyCallEvent > shows if the call is connecting", - "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends child action delayed message events", - "test/unit-tests/utils/UrlUtils-test.ts::parseUrl > should not throw on no proto", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a deny request fails", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > current session section > disables current session context menu while devices are loading", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > when the profile does not exist and fetching it again > should clear the error", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > distinguishes widgets with the same ID in different rooms", - "test/unit-tests/components/views/context_menus/ContextMenu-test.tsx:: > near left edge of window", - "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > getUnsentMessages > checks the event status", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > when session is found in storage > with a normal pickle key > should persist access token when idb is not available", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > highlights nothing if poll has no votes", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by ID and join", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with fallback", - "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts [testing](foobar) -> testing|", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > video rooms > does not render irrelevant options for element video room", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > when a message has been edited > does not highlight when no version of message's push actions have a highlight tweak", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is a non-threaded timeline > and reading the timeline > and reading the timeline again > and forgetting the read markers, should send the stored marker again", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when room alias didn't change", - "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > sends no vote event when I click what I already chose", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > pretends to request notification permission", - "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > renders a heading", - "test/unit-tests/components/structures/ThreadPanel-test.tsx::ThreadPanel > Filtering > correctly filters Thread List with a single, unparticipated thread", - "test/unit-tests/email-test.ts::looksValid > for \u00bb\u00ab should return false", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > notifications > indicates support for notifications", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should show member list right panel phase on Action.ViewUser without `payload.member`", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > should show error if /publicRooms API failed", "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > with overlayTimeline > unpaginates down to an event from the overlay timeline", - "test/unit-tests/settings/enums/ImageSize-test.ts::ImageSize > suggestedSize > constrains width in large mode", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /join > should handle matrix.org permalinks", - "test/unit-tests/components/structures/LoggedInView-test.tsx:: > should open spotlight when Ctrl+k is fired", - "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > space contains child invites", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForCanonicalAliasEvent() > returns correct message when changed alias and added alt alias", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > pills do not appear for event permalinks with a custom label", - "test/unit-tests/components/views/messages/TextualBody-test.tsx:: > renders formatted m.text correctly > renders formatted body without html correctly", - "test/unit-tests/utils/room/getRoomFunctionalMembers-test.ts::getRoomFunctionalMembers > should return service_members field of the functional users state event", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > replaces toasts by key without changing order", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > correctly handles other errors", - "test/unit-tests/utils/FormattingUtils-test.tsx::FormattingUtils > formatList > should return only item when given list of length 1", - "test/unit-tests/utils/StorageManager-test.ts::StorageManager > Crypto store checks > should not be ok if sync store but no crypto store", - "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > isSupported should return false from VoiceRecording", - "test/unit-tests/utils/arrays-test.ts::arrays > concat > should concat two arrays", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/message-test.ts::message > sendMessage > Should handle emojis", - "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline updates without a live event", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > restoreSessionFromStorage() > should abort login when we expect to find an access token but don't", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist device language when available", - "test/unit-tests/components/views/location/Map-test.tsx:: > renders", - "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform Web > should parse the user agent correctly - Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36", - "test/unit-tests/accessibility/RovingTabIndex-test.tsx::RovingTabIndex > handles arrow keys > should handle up/down arrow keys work when handleUpDown=true", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > togglePanel > operates on the current room if no room is specified", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > calls onClick handler when clicking outside of share buttons", - "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should call the onResetIdentityClick callback when the reset cryptographic identity button is clicked", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /rainbowme > should return usage if no args", - "test/unit-tests/components/views/elements/SearchWarning-test.tsx:: > with desktop builds available > renders without a logo when showLogo=false", - "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > doesn't restore member info cards when switching back to a room", - "test/unit-tests/theme-test.ts::theme > setTheme > should reject promise if pooling maximum value is reached", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionDisplayText > returns the completion if we are handling a user", - "test/unit-tests/Lifecycle-test.ts::Lifecycle > setLoggedIn() > without a pickle key > should persist credentials", - "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > parsePermalink > should correctly parse permalinks with http protocol", + "test/unit-tests/utils/export-test.tsx::export > tests the file extension splitter", + "test/unit-tests/autocomplete/SpaceProvider-test.ts::SpaceProvider > suggests only spaces matching a prefix", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffDeletion > with a single character removed > at start of string", + "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > focused beacons > focuses on beacon location on sidebar list item click", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > getDefaultDeviceDisplayName > Mozilla/5.0 (X11; FreeBSD i686; rv:21.0) Gecko/20100101 Firefox/21.0 = Element Desktop: FreeBSD", + "test/unit-tests/components/structures/AutocompleteInput-test.tsx::AutocompleteInput > should mark selected suggestions as selected", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > ignores thread updates for unknown threads", + "test/unit-tests/components/structures/ThreadView-test.tsx::ThreadView > sends a thread message with the correct fallback", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > bold within a word", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > should not render the send button", + "test/unit-tests/stores/room-list/utils/roomMute-test.ts::getChangedOverrideRoomMutePushRules() > returns undefined when dispatched action is not accountData", + "test/unit-tests/async-components/dialogs/security/NewRecoveryMethodDialog-test.tsx:: > when key backup is enabled", + "test/unit-tests/components/views/spaces/SpaceTreeLevel-test.tsx::SpaceButton > metaspace > does nothing on click if already active", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/WysiwygComposer-test.tsx::WysiwygComposer > Keyboard navigation > In message editing > Moving up > Should not moving when the content has changed", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request succeeds", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > orders rooms by tag order without categorizing", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > watchPosition() > maps geolocation position error and calls error handler", + "test/unit-tests/components/views/dialogs/UntrustedDeviceDialog-test.tsx:: > should call onFinished with sas when Interactively verify by emoji is clicked", + "test/unit-tests/email-test.ts::looksValid > for \u00bbalice\u00ab should return false", + "test/unit-tests/utils/location/isSelfLocation-test.ts::isSelfLocation > Returns true for a missing m.asset", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > restricted rooms > when room does not support join rule restricted > should not show restricted room join rule when upgrade is disabled", + "test/unit-tests/components/views/settings/AddPrivilegedUsers-test.tsx:: > hasLowerOrEqualLevelThanDefaultLevel() should return false for default level -50", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a string to german", + "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Richtext composer input > Should add relation to message", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for user trust @TT:h", + "test/unit-tests/stores/oidc/OidcClientStore-test.ts::OidcClientStore > initialising oidcClient > should fallback to stored issuer when no client well known is available", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > sendDelayedEvent > sends delayed state events", + "test/unit-tests/languageHandler-test.tsx::languageHandler > should support overriding translations", + "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > getLiveBeaconIds() > returns empty array when user does not have live beacons", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should render Date separators for the events", + "test/unit-tests/components/views/settings/KeyboardShortcut-test.tsx::KeyboardShortcut > doesn't render same modifier twice", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles simple tag substitution and translates with fallback locale, attributes fallback locale", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > chat effects > sends chat effects", + "test/unit-tests/utils/oidc/TokenRefresher-test.ts::TokenRefresher > should persist tokens without a pickle key", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > correctly emits events for metaspace changes during onReady", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Settings Store > should collect low bandWidth enabled", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys with fallback", + "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls sendContentToRoom when parsing is successful", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > has() should return false", + "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > remains connected if we stay in the room", + "test/unit-tests/stores/widgets/StopGapWidget-test.ts::StopGapWidget > informs widget of theme changes", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbResend\u00ab > should should resend the mail and show the tooltip", + "test/unit-tests/toasts/UnverifiedSessionToast-test.tsx::UnverifiedSessionToast > when rendering the toast > and confirming the login > should dismiss the device", + "test/unit-tests/hooks/useLatestResult-test.tsx::renderhook tests > should not let a slower response to an earlier query overwrite the result of a later query", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > onRoomTimeline > ignores timeline where toStartOfTimeline is true", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > returns kick, redact messages, ban buttons if conditions met", + "test/unit-tests/editor/operations-test.ts::editor/operations: formatting operations > formatRangeAsLink > converts testing -> [testing](|)", + "test/unit-tests/editor/diff-test.ts::editor/diff > diffAtCaret > insert in middle", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > allows forwarding a room message", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > getApps > should return apps from the widget store", + "test/unit-tests/components/views/location/LocationShareMenu-test.tsx:: > Live location share > creates beacon info event on submission", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/png", + "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is greater than 1 > renders a heading with count", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > allows un-voting by passing an empty vote", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should export", + "test/unit-tests/components/views/settings/tabs/user/KeyboardUserSettingsTab-test.tsx::KeyboardUserSettingsTab > renders list of keyboard shortcuts", + "test/unit-tests/components/views/dialogs/InviteDialog-test.tsx::InviteDialog > when inviting a user with an unknown profile > when clicking \u00bbStart DM anyway\u00ab > should start the DM", + "test/unit-tests/utils/export-test.tsx::export > checks if the icons' html corresponds to export regex", + "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders check_code_mismatch", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > does show copy link button when supplied a link", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to activity ordering for im.vector.fake.suggested=", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > updates all mismatched rules from synced rules on a change to push rules account data when primary rule is disabled", + "test/unit-tests/settings/controllers/ThemeController-test.ts::ThemeController > returns default theme when value is not a valid theme", + "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > does not track a failed decryption where the event is subsequently successfully decrypted", + "test/unit-tests/components/views/rooms/UserIdentityWarning-test.tsx::UserIdentityWarning > updates the display when a member joins/leaves > when member leaves immediately after joining", + "test/unit-tests/utils/oidc/persistOidcSettings-test.ts::persist OIDC settings > persistOidcAuthenticatedSettings > should set clientId and issuer in localStorage", + "test/unit-tests/Image-test.ts::Image > mayBeAnimated > image/gif", + "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 1 verified/untrusted: returns 'warning', DM = false", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > when login succeeds > should persist login credentials", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > does not open maximised map when on click when beacon is stopped", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > tests that links with markdown empasis in them are getting properly HTML formatted", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > clear() should clear the cache", + "test/unit-tests/components/views/dialogs/DevtoolsDialog-test.tsx::DevtoolsDialog > renders the devtools dialog", + "test/unit-tests/components/structures/MessagePanel-test.tsx::MessagePanel > should collapse adjacent member events", + "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > shows nothing by default", + "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > creates a geolocate control and adds it to the map when allowGeolocate is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > group call enabled > can't call if you have no friends and cannot invite friends", + "test/unit-tests/utils/StorageAccess-test.ts::StorageAccess > should save, load, and delete from known table 'pickleKey'", + "test/unit-tests/settings/controllers/ServerSupportUnstableFeatureController-test.ts::ServerSupportUnstableFeatureController > settingDisabled() > considered enabled if all required features in one of the feature groups are supported", + "test/unit-tests/models/Call-test.ts::ElementCall > create call > don't sent notify event if there are existing room call members", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > links to the poll start event from an active poll detail", + "test/unit-tests/components/views/elements/PollCreateDialog-test.tsx::PollCreateDialog > retains poll disclosure type when editing", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > markdown remains plaintext", + "test/unit-tests/components/views/settings/tabs/user/VoiceUserSettingsTab-test.tsx:: > devices > logs and resets device when update fails", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > should remove the room from the store on unmount", + "test/unit-tests/components/views/settings/SettingsFieldset-test.tsx:: > renders fieldset with plain text description", + "test/unit-tests/utils/DateUtils-test.ts::formatDate > should return time string with weekday if date is within last 6 days", "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms > when room does not support join rule knock > upgrades room with no parent spaces or members when changing join rule to knock", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > interactions > does not call onClick handler when clicking share button", - "test/unit-tests/components/views/beacon/BeaconViewDialog-test.tsx:: > renders a map with markers", - "test/unit-tests/components/views/messages/RoomPredecessorTile-test.tsx:: > Ignores m.predecessor if labs flag is off", - "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > message case AskToJoin > renders the corresponding message with a generic title", - "test/unit-tests/components/views/settings/devices/deleteDevices-test.tsx::deleteDevices() > deletes devices and calls onFinished when interactive auth is not required", - "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > initialises sanely with all behaviour", - "test/unit-tests/utils/DateUtils-test.ts::getDaysArray > should return Sun-Sat in short mode", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership self-trust behaviour > 2 verified: returns 'verified', self-trust = true, DM = true", - "test/unit-tests/components/views/elements/FilterDropdown-test.tsx:: > renders dropdown options in menu", - "test/unit-tests/components/views/beacon/BeaconListItem-test.tsx:: > when a beacon is live and has locations > non-self beacons > uses beacon description as beacon name", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles plurals when count is not 1", - "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > renders stopped UI when a beacon event is replaced", - "test/unit-tests/utils/numbers-test.ts::numbers > percentageOf > should work with ranges other than 0-100", - "test/unit-tests/components/views/rooms/memberlist/MemberListView-test.tsx::MemberListView and MemberlistHeaderView > does order members correctly (presence false) > does order members correctly > by power level", - "test/unit-tests/components/views/messages/MLocationBody-test.tsx::MLocationBody > > without error > opens map dialog on click", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should not render section when account deactivation feature is disabled", - "test/unit-tests/components/views/auth/AuthHeaderLogo-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/rooms/NotificationBadge/StatelessNotificationBadge-test.tsx::StatelessNotificationBadge > has dot style for activity", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > publishing positions > when publishing position fails > continues publishing positions when a beacon fails intermittently", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/createMessageContent-test.ts::createMessageContent > Plaintext composer input > Should replace user mentions with user name in body", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > normally doesn't open the chat panel", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForHistoryVisibilityEvent() > returns correct message when room join rule changed to shared", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > indicates if there are unsent messages", - "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when Settings.TimelineEnableRelativeDates is falsy > formats date in full when current time is 6 days ago, but less than 144h", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > Multiple selection > toggling select all > selects all sessions when some sessions are already selected", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when only an audio stream is available > should return the audio stream", - "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger > and clickign with a drag motion below the threshold of 5px, it should pass the click to the children", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > should generate big emoji for an emoji-only reply to a message", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > displays error when pusher update fails", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should open the dial pad when the dial button is clicked", - "test/unit-tests/components/views/rooms/EventTile-test.tsx::EventTile > event highlighting > does not highlight message where message matches no push actions", - "test/unit-tests/utils/SnakedObject-test.ts::snakeToCamel > should convert snake_case to camelCase in simple scenarios", - "test/unit-tests/components/views/settings/encryption/RecoveryPanelOutOfSync-test.tsx:: > should call onForgotRecoveryKey when the 'Forgot recovery key?' is clicked", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > renders cancel button for an event with a pending redaction", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when not showing hidden events > should return a MessageEventFactory for a UTD event", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > styling, but * becomes _ and __ becomes **", - "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns month and day for events created less than 24h ago but on a different day", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > clicking checkbox toggles selection", - "test/unit-tests/components/views/dialogs/CreateRoomDialog-test.tsx:: > for a private room > should use defaultEncrypted prop when it is false", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > can be used to view a room by alias and join", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > initialises correctly with no beacons", - "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > updates > installs update", - "test/unit-tests/components/views/rooms/wysiwyg_composer/utils/autocomplete-test.ts::getMentionAttributes > user mentions > returns expected attributes when avatar url is not default", - "test/unit-tests/utils/MultiInviter-test.ts::MultiInviter > invite > should show sensible error when attempting to invite over federation with m.federate=false", - "test/unit-tests/hooks/useUnreadNotifications-test.ts::useUnreadNotifications > uses the correct number of unreads", - "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > canSetValue should return true", - "test/unit-tests/events/EventTileFactory-test.ts::pickFactory > when showing hidden events > should return a MessageEventFactory for an audio message event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/utils-test.tsx::handleClipboardEvent > calls error handler when fetch fails", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > login via key/pass > post login setup > should setup e2e when server supports cross signing", + "test/unit-tests/utils/device/parseUserAgent-test.ts::parseUserAgent() > on platform iOS > should parse the user agent correctly - Element/1.8.21 (iPhone XS Max; iOS 15.2; Scale/3.00)", + "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > and accesing the first added item and adding another item > should contain the last recently accessed items", "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > accept :NUM (port specifier)", - "test/unit-tests/utils/LruCache-test.ts::LruCache > when there is a cache with a capacity of 3 > when the cache contains 2 items > and adding another item > deleting the first item should work", - "test/unit-tests/components/views/settings/devices/LoginWithQRFlow-test.tsx:: > errors > renders insecure_channel_detected", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForMessageEvent() > returns correct message for redacted message", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Action.SubmitAskToJoin > calls knockRoom() and sets promptAskToJoin state to false", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should handle missing header", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > properly parses room alias with hyphen in domain part", - "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > Cross-signing status > Cached locally ssk > should collect if cached locally false", - "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > for a pinned widget > should render permission request", - "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the m.audio event type", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a OIDC params > should fail when query params do not include valid code and state", - "test/unit-tests/DeviceListener-test.ts::DeviceListener > recheck > Report verification and recovery state to Analytics > Report crypto verification state to analytics > Does report session verification state when Identity trusted and device is signed by owner", - "test/unit-tests/components/structures/auth/Registration-test.tsx::Registration > when delegated authentication is configured and enabled > when is mobile registeration > should show username field with autocaps disabled", - "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > shows a persistent widget with back button when viewing the room", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > increments countSeen when toast has bottom priority", - "test/unit-tests/utils/sets-test.ts::sets > setHasDiff > should flag true on A length > B length", - "test/unit-tests/components/views/right_panel/VerificationPanel-test.tsx:: > 'Verify by emoji' flow > shows a spinner initially", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > hyperlink", - "test/unit-tests/stores/room-list/previews/ReactionEventPreview-test.ts::ReactionEventPreview > getTextFor > should return null for non-relations", - "test/unit-tests/components/views/context_menus/RoomGeneralContextMenu-test.tsx::RoomGeneralContextMenu > when developer mode is disabled, it should not render the developer tools option", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > thread button > when threads feature is enabled > does not render thread button for a beacon_info event", - "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when the room version is unsupported and upgrade is enabled > should disable the checkbox", - "test/unit-tests/components/views/settings/tabs/user/AccountUserSettingsTab-test.tsx:: > deactivate account > should display the deactivate account dialog when clicked", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > getSenderName() > Handles missing sender and get sender", - "test/unit-tests/utils/SessionLock-test.ts::SessionLock > If a third instance starts while we are waiting, we give up immediately", - "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > updates guest access on toggle", - "test/unit-tests/components/views/settings/devices/FilteredDeviceList-test.tsx:: > displays no results message when there are no devices", - "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > toggles and sets settings correctly", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > reply button > renders reply button on others actionable event", - "test/unit-tests/components/views/auth/CountryDropdown-test.tsx::CountryDropdown > defaultCountry > should pick appropriate default country for de-DE", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > updates live timeline when a timeline reset happens", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > device dehydration > Shows an unverified dehydrated device", - "test/unit-tests/utils/promise-test.ts::promise.ts > batch > should wait for the current batch to finish to request the next one", - "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > translates a string to german", - "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > renders devices without available client information without error", - "test/unit-tests/components/views/settings/AddRemoveThreepids-test.tsx::AddRemoveThreepids > should show UIA dialog when necessary for adding email", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > stopBeacon() > records error when stopping beacon event fails to send", - "test/unit-tests/stores/notifications/RoomNotificationState-test.ts::RoomNotificationState > suggests nothing if the room is muted", - "test/unit-tests/TextForEvent-test.ts::TextForEvent > textForTopicEvent() > returns correct message for topic event with the legacy key", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > should count different error codes separately for multiple failures with different error codes", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with only lat and lon", + "test/unit-tests/stores/SetupEncryptionStore-test.ts::SetupEncryptionStore > resetConfirm should work with a cached account password", + "test/unit-tests/KeyBindingsManager-test.ts::KeyBindingsManager > should match advanced ctrlOrMeta key combo", + "test/unit-tests/hooks/useRoomMembers-test.tsx::useRoomMembers > should update on RoomState.Members events", + "test/unit-tests/stores/ToastStore-test.ts::ToastStore > addOrReplaceToast() > adds a toast to an empty store", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > read receipts and markers > when there is no event, it should not send any receipt", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/FormattingButtons-test.tsx::FormattingButtons > Shows indent and unindent buttons when either a single list type is 'reversed'", + "test/unit-tests/components/views/beacon/LeftPanelLiveShareWarning-test.tsx:: > when user has live location monitor > renders correctly when minimized", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > when the first data has been received > contentLength should return the buffer length", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return true for status not_sent", + "test/unit-tests/components/views/settings/devices/CurrentDeviceSection-test.tsx:: > renders spinner while device is loading", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getRoomNotifsState handles guest users", + "test/unit-tests/editor/model-test.ts::editor/model > non-editable part manipulation > typing in middle of non-editable part appends", "test/unit-tests/components/views/settings/SetIdServer-test.tsx:: > should clear input on cancel", - "test/unit-tests/stores/OwnBeaconStore-test.ts::OwnBeaconStore > onReady() > adds own users beacons to state", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > escapes angle brackets", - "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isLocationEvent() > returns true for an event with m.location stable type", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > searchUserDirectory > searches for users with a custom limit", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > join rule > does not display advanced section toggle when join rule is not public", + "test/unit-tests/SupportedBrowser-test.ts::SupportedBrowser > should not warn for Element Desktop", + "test/unit-tests/ScalarAuthClient-test.ts::ScalarAuthClient > exchangeForScalarToken > should throw if scalar_token is missing in response", + "test/unit-tests/utils/membership-test.ts::isKnockDenied > checks that the user knock has been denied", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > history visibility > renders world readable option when room is encrypted and history is already set to world readable", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > accept hyphens in name @foo-bar:server.com", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > should show single Continue button if OIDC MSC3824 compatibility is given by server", + "test/unit-tests/events/location/getShareableLocationEvent-test.ts::getShareableLocationEvent() > beacons > returns the latest location event for a live beacon with location", + "test/unit-tests/components/views/settings/encryption/AdvancedPanel-test.tsx:: > > should display the blacklist of unverified devices settings", + "test/unit-tests/autocomplete/QueryMatcher-test.ts::QueryMatcher > Matches ignoring accents", + "test/unit-tests/components/views/polls/pollHistory/PollHistory-test.tsx:: > Poll detail > displays poll detail on past poll list item click", + "test/unit-tests/components/views/dialogs/AccessSecretStorageDialog-test.tsx::AccessSecretStorageDialog > Notifies the user if they input an invalid passphrase", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > does not honour m.space.parent if sender does not have permission in parent space", + "test/unit-tests/utils/stringOrderField-test.ts::stringOrderField > reorderLexicographically > should work moving left when right is defined", + "test/unit-tests/stores/widgets/StopGapWidgetDriver-test.ts::StopGapWidgetDriver > If the feature_dynamic_room_predecessors is enabled > passes the flag through to getVisibleRooms", + "test/unit-tests/stores/room-list/filters/SpaceFilterCondition-test.ts::SpaceFilterCondition > onStoreUpdate > when directChildRoomIds change > room added", + "test/unit-tests/utils/room/tagRoom-test.ts::tagRoom() > when a room is tagged as favourite > should unfavourite a room", + "test/unit-tests/components/structures/TimelinePanel-test.tsx::TimelinePanel > when a thread updates > updates thread previews", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with plaintext > plaintext remains plaintext even when forcing html", + "test/unit-tests/stores/room-list/MessagePreviewStore-test.ts::MessagePreviewStore > should handle local echos correctly", + "test/unit-tests/stores/RoomNotificationStateStore-test.ts::RoomNotificationStateStore > Emits an event when a room has unreads", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > UIStore interactions > when a non-resize event occurred in UIStore > should still display the sticker picker", + "test/unit-tests/audio/VoiceMessageRecording-test.ts::VoiceMessageRecording > on should forward the call to VoiceRecording", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should not attempt registration when oidc native flow setting is disabled", + "test/unit-tests/utils/enums-test.ts::enums > isEnumValue > should return false on values not in a number enum", + "test/unit-tests/stores/BreadcrumbsStore-test.ts::BreadcrumbsStore > If the feature_dynamic_room_predecessors is not enabled > Appends a room when you join", + "test/unit-tests/UserActivity-test.ts::UserActivity > should consider user not active recently if no activity", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > isRoomInSpace() > favourites space does contain favourites even if they are also shown in a space", + "test/unit-tests/components/views/settings/PowerLevelSelector-test.tsx::PowerLevelSelector > should render", + "test/unit-tests/settings/handlers/RoomDeviceSettingsHandler-test.ts::RoomDeviceSettingsHandler > should write/read/clear the value for \u00bbblacklistUnverifiedDevices\u00ab", + "test/unit-tests/components/views/rooms/EditMessageComposer-test.tsx:: > createEditContent > allows emoting with non-text parts", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > clear all notifications > clears all notifications", + "test/unit-tests/components/views/settings/tabs/room/SecurityRoomSettingsTab-test.tsx:: > guest access > updates guest access on toggle", + "test/unit-tests/utils/permalinks/Permalinks-test.ts::Permalinks > should generate an event permalink for room IDs with some candidate servers", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > connect to call with ongoing session", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Crypto info > Cross-Signing > should collect cross-signing ready true", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > when translations exist in language > handles variable substitution with react node", + "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts room notification type", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > says poll is ended if there is an end event", + "test/unit-tests/components/structures/PipContainer-test.tsx::PipContainer > hides if there's no content", + "test/unit-tests/components/structures/auth/ForgotPassword-test.tsx:: > when starting a password reset flow > and submitting an known email > and clicking \u00bbNext\u00ab > and entering different passwords > should show an info about that", + "test/unit-tests/components/views/settings/JoinRuleSettings-test.tsx:: > knock rooms directory visibility > when join rule is knock > should call onError if setting visibility fails", + "test/unit-tests/PosthogAnalytics-test.ts::PosthogAnalytics > Initialisation > Should not be enabled without config being set", + "test/unit-tests/components/views/rooms/RoomPreviewBar-test.tsx:: > with an invite > without an invited email > for a non-dm room > renders reject and ignore action buttons when handler is provided", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > synced push rules > on changes to account_data > stops listening to account data events on unmount", + "test/unit-tests/components/structures/auth/Login-test.tsx::Login > OIDC native flow > should show oidc-aware flow for oidc-enabled homeserver when oidc native flow setting is disabled", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _t > handles variable substitution with react node and translates with fallback locale", + "test/unit-tests/components/views/settings/discovery/DiscoverySettings-test.tsx::DiscoverySettings > button to accept terms is disabled if checkbox not checked", + "test/unit-tests/utils/FileUtils-test.ts::FileUtils > downloadLabelForFile > should correctly label Audio", + "test/unit-tests/components/views/dialogs/SpotlightDialog-test.tsx::Spotlight Dialog > nsfw public rooms filter > displays rooms with nsfw keywords in results when showNsfwPublicRooms is truthy", + "test/unit-tests/components/views/rooms/RoomHeader/VideoRoomChatButton-test.tsx:: > toggles timeline in right panel on click", + "test/unit-tests/vector/url_utils-test.ts::url_utils.ts > parseQsFromFragment", + "test/unit-tests/components/views/settings/devices/LoginWithQR-test.tsx:: > MSC4108 > reciprocates login", + "test/unit-tests/components/views/audio_messages/SeekBar-test.tsx::SeekBar > when rendering a SeekBar for an empty playback > should render correctly", + "test/unit-tests/utils/crypto/shouldForceDisableEncryption-test.ts::shouldForceDisableEncryption() > should return true when force_disable property is true", + "test/unit-tests/settings/handlers/DeviceSettingsHandler-test.ts::DeviceSettingsHandler > Returns undefined for an unknown setting", + "test/unit-tests/stores/SpaceStore-test.ts::SpaceStore > static hierarchy resolution tests > test fixture 1 > dms are only added to Notification States for only the People Space", + "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadThreads() > returns false when no threads", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /unholdcall > isEnabled > should return true for Room", + "test/unit-tests/editor/position-test.ts::editor/position > move forwards within one part", + "test/unit-tests/components/views/elements/AppTile-test.tsx::AppTile > distinguishes widgets with the same ID in different rooms", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > prefers size stashed in LocalStorage to the defaultSize prop", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should switch rooms when edit is clicked on a search result for a different room", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > opens room file panel on button click", "test/unit-tests/utils/dm/filterValidMDirect-test.ts::filterValidMDirect > should return an empy object for a non-object", - "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > for a Room > when MessageComposerInput.showStickersButton = true > should display the button", - "test/unit-tests/components/views/location/Map-test.tsx:: > geolocate > unsubscribes from geolocate errors on destroy", - "test/unit-tests/RoomNotifs-test.ts::RoomNotifs test > getUnreadNotificationCount > counts thread notifications type", - "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > message forwarding > allows forwarding a room message", - "test/unit-tests/components/views/beacon/DialogSidebar-test.tsx:: > closes on close button click", - "test/unit-tests/components/views/rooms/RoomKnocksBar-test.tsx::RoomKnocksBar > with requests to join > when knock members count is 1 > toggles the disabled attribute for the buttons when a approve request succeeds", - "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should delete the event", - "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > canPin & canUnpin > canUnpin > should return false if event is not unpinnable", - "test/unit-tests/autocomplete/EmojiProvider-test.ts::EmojiProvider > Returns consistent results after final colon :man", - "test/unit-tests/utils/media/requestMediaPermissions-test.tsx::requestMediaPermissions > when an Error is raised > should log the error and show the \u00bbNo media permissions\u00ab modal", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > opens the chat panel if there are unread messages", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > size limit > does not render size limit input when set in ForceRoomExportParameters", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > opens the thread panel", - "test/unit-tests/utils/local-room-test.ts::local-room > doMaybeLocalRoomAction > for a local room > dispatch a local_room_event", - "test/unit-tests/components/views/rooms/wysiwyg_composer/hooks/useSuggestion-test.tsx::processSelectionChange > calls setSuggestion with the expected arguments when text node is valid command", - "test/unit-tests/DecryptionFailureTracker-test.ts::DecryptionFailureTracker > tracks visible vs. not visible events", - "test/unit-tests/stores/UserProfilesStore-test.ts::UserProfilesStore > fetchProfile > when fetching a profile that does not exist > should return null", - "test/unit-tests/utils/objects-test.ts::objects > objectShallowClone > should only clone the top level properties", - "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing if set false and existing event is false", - "test/unit-tests/Unread-test.ts::Unread > doesRoomHaveUnreadMessages() > returns true for a room that only contains a hidden event", - "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /invite > isEnabled > should return true for Room", - "test/unit-tests/utils/arrays-test.ts::arrays > arrayHasDiff > should flag false if same", - "test/unit-tests/stores/ToastStore-test.ts::ToastStore > dismissToast() > removes toast and emits", - "test/unit-tests/utils/ShieldUtils-test.ts::shieldStatusForMembership other-trust behaviour > 2 unverified/untrusted: returns 'normal', DM = true", - "test/unit-tests/HtmlUtils-test.tsx::bodyToHtml > feature_latex_maths > should render inline katex", - "test/unit-tests/components/views/settings/devices/LoginWithQRSection-test.tsx:: > MSC4108 > MSC4108 > no support in crypto", - "test/unit-tests/Notifier-test.ts::Notifier > displayPopupNotification > should strip reply fallback", - "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > polls button > should render when asked to" + "test/unit-tests/components/views/elements/Pill-test.tsx:: > should render the expected pill for a known user not in the room", + "test/unit-tests/utils/exportUtils/HTMLExport-test.ts::HTMLExport > should include attachments", + "test/unit-tests/LegacyCallHandler-test.ts::LegacyCallHandler without third party protocols > incoming calls > listens for incoming call events when voip is enabled", + "test/unit-tests/editor/history-test.ts::editor/history > not every keystroke stores a history step", + "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > send read receipts > with server support > can be disabled", + "test/unit-tests/components/views/messages/DateSeparator-test.tsx::DateSeparator > when feature_jump_to_date is enabled > can jump to last month", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > remains connected if we stay in the room", + "test/unit-tests/utils/notifications-test.ts::notifications > clearAllNotifications > sends unthreaded receipt requests", + "test/unit-tests/modules/ProxiedModuleApi-test.tsx::ProxiedApiModule > translations > integration > should translate strings using translation system", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is recent > handleRoomUpdate > warns and returns without change when removing a room that is not indexed", + "test/unit-tests/utils/ShieldUtils-test.ts::mkClient self-test > behaves well for device trust @FT:h", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > matrix uri > accepts matrix:r/foo-bar:server.uk", + "test/unit-tests/SlashCommands-test.tsx::SlashCommands > /tovirtual > isEnabled > when virtual rooms are not supported > should return false for Room", + "test/unit-tests/components/structures/RoomStatusBar-test.tsx::RoomStatusBar > > unsent messages > should render warning when messages are unsent due to resource limit", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > @room pill turns message into html", + "test/unit-tests/components/views/settings/ThemeChoicePanel-test.tsx:: > custom theme > should display custom theme", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > shows edit button when we can edit", + "test/unit-tests/components/views/settings/Notifications-test.tsx:: > main notification switches > email switches > enables email notification when toggling on", + "test/unit-tests/components/structures/PictureInPictureDragger-test.tsx::PictureInPictureDragger > when rendering the dragger with PiP content 1 and 2 > should render both contents", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > when query params have a loginToken > when login fails > should show a dialog", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > allows to collapse a reason", + "test/unit-tests/utils/notifications-test.ts::notifications > setUnreadMarker > does nothing when clearing if flag is false", + "test/unit-tests/utils/DateUtils-test.ts::formatRelativeTime > returns hour format for events created in the same day", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > hides scores if I have not voted", + "test/unit-tests/components/views/dialogs/ForwardDialog-test.tsx::ForwardDialog > If the feature_dynamic_room_predecessors is not enabled > Passes through the dynamic predecessor setting", + "test/unit-tests/stores/right-panel/RightPanelStore-test.ts::RightPanelStore > setCard > only creates a single history entry if given the same card twice", + "test/unit-tests/vector/platform/ElectronPlatform-test.ts::ElectronPlatform > pickle key > makes correct ipc call to destroy pickle key", + "test/unit-tests/utils/SessionLock-test.ts::SessionLock > A single instance starts up normally", + "test/unit-tests/components/views/emojipicker/EmojiPicker-test.tsx::EmojiPicker > should not mangle default order after filtering", + "test/unit-tests/utils/validate/numberInRange-test.ts::validateNumberInRange > returns true when value is equal to min", + "test/unit-tests/editor/serialize-test.ts::editor/serialize > with markdown > escaped markdown should not retain backslashes", + "test/unit-tests/components/views/context_menus/MessageContextMenu-test.tsx::MessageContextMenu > right click > does not show reply button when we cannot reply", + "test/unit-tests/components/views/rooms/MessageComposer-test.tsx::MessageComposer > wysiwyg correctly persists state to and from localStorage", + "test/unit-tests/utils/PinningUtils-test.ts::PinningUtils > isUnpinnable > should return true for pinnable event types", + "test/unit-tests/utils/arrays-test.ts::arrays > asyncFilter > should filter the content", + "test/unit-tests/components/views/settings/shared/SettingsSubsectionHeading-test.tsx:: > renders with children", + "test/unit-tests/components/views/messages/MBeaconBody-test.tsx:: > when map display is not configured > renders maps unavailable error for a live beacon with location", + "test/unit-tests/components/structures/LoggedInView-test.tsx:: > timezone updates > should set the user timezone when userTimezonePublish is enabled", + "test/unit-tests/editor/caret-test.ts::editor/caret: DOM position for caret > handling non-editable parts and caret nodes > at start of non-editable part (with plain text around)", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > isContentActionable() > returns true for event with empty content body", + "test/unit-tests/stores/room-list/SpaceWatcher-test.ts::SpaceWatcher > removes filter for space -> all transition", + "test/unit-tests/utils/EventUtils-test.ts::EventUtils > canCancel() > return false for status invalid-status", + "test/unit-tests/components/views/rooms/PinnedEventTile-test.tsx:: > should render the menu without unpin and delete", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > cancels my local vote if another comes in", + "test/unit-tests/utils/dm/findDMForUser-test.ts::findDMForUser > should not find a room for an unknown Id", + "test/unit-tests/utils/beacon/geolocation-test.ts::geolocation utilities > getGeoUri > Renders a URI with 3 coords", + "test/unit-tests/stores/room-list/RoomListStore-test.ts::RoomListStore > defaults to importance ordering for m.lowpriority=", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > should fall back to /download/ if /thumbnail/ fails", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > emote", + "test/unit-tests/submit-rageshake-test.ts::Rageshakes > Synapse info > should collect synapse admin keys if available", + "test/unit-tests/utils/FixedRollingArray-test.ts::FixedRollingArray > should seed the array with the given value", + "test/unit-tests/utils/UrlUtils-test.ts::unabbreviateUrl > should return empty string if passed falsey", + "test/unit-tests/components/views/rooms/PinnedMessageBanner-test.tsx:: > should display the last message when the pinned event array changed", + "test/unit-tests/components/views/rooms/wysiwyg_composer/components/PlainTextComposer-test.tsx::PlainTextComposer > Should not render if not wrapped in room context", + "test/unit-tests/components/views/settings/tabs/room/PeopleRoomSettingsTab-test.tsx::PeopleRoomSettingsTab > with requests to join > calls invite on approve", + "test/unit-tests/components/views/messages/MPollBody-test.tsx::MPollBody > shows non-radio buttons if the poll is ended", + "test/unit-tests/models/LocalRoom-test.ts::LocalRoom > should not have after create callbacks", + "test/unit-tests/components/views/beacon/BeaconStatus-test.tsx:: > renders without icon", + "test/unit-tests/languageHandler-test.tsx::languageHandler JSX > for a non-en language > when a translation string does not exist in active language > _tDom() > handles plurals when count is not 1 and translates with fallback locale, attributes fallback locale", + "test/unit-tests/components/structures/MainSplit-test.tsx:: > should report to analytics on resize stop", + "test/unit-tests/Markdown-test.ts::Markdown parser test > fixing HTML links > expects that the link part will not be accidentally added to for multiline links", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show spinner whilst loading", + "test/unit-tests/components/views/typography/Heading-test.tsx:: > renders h2 with correct attributes" ], "pass_to_fail": [], "pass_to_skipped": [], "fail_to_pass": [ + "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > renders", "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > correctly handles the loading/disabled state", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > keywords", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings with guest spa url", - "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders unselected device tile with checkbox", - "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings without guest spa url", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when all devices are selected", "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of undefined", + "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when no devices are selected", + "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of \"this is a byline\"", "test/unit-tests/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx:: > should list spaces which are not parents of the room", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings with guest spa url", + "test/unit-tests/components/views/settings/tabs/user/SidebarUserSettingsTab-test.tsx:: > renders sidebar settings without guest spa url", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create just-me space [Chrome]", + "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders unselected device tile with checkbox", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > matches the snapshot", + "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > form elements actually toggle the model value > mentions > keywords", "test/unit-tests/components/views/settings/tabs/user/SessionManagerTab-test.tsx:: > goes to filtered list from security recommendations", - "test/unit-tests/components/views/elements/LabelledCheckbox-test.tsx:: > should render with byline of \"this is a byline\"", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when all devices are selected", - "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders export dialog", "test/unit-tests/components/views/settings/devices/SelectableDeviceTile-test.tsx:: > renders selected tile", - "test/unit-tests/components/views/settings/notifications/Notifications2-test.tsx:: > matches the snapshot", - "test/unit-tests/components/views/settings/devices/FilteredDeviceListHeader-test.tsx:: > renders correctly when no devices are selected", - "test/unit-tests/components/structures/SpaceHierarchy-test.tsx::SpaceHierarchy > > renders" + "test/unit-tests/components/views/dialogs/ExportDialog-test.tsx:: > renders export dialog" ], "fail_to_fail": [ - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > should match the snapshot", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > requests in expanding batchSizes", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state CREATING should match the snapshot", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when the active space is not MetaSpace.Home", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when UIComponent.ExploreRooms is disabled", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > handles accounts with zero rooms", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_UNEXPECTED_RECOVERY_KEY)", - "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply", - "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > does not show the face pile for DMs", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should render hidden image placeholder", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > has button to edit topic", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > doesn't get stuck in a loop if you view rooms quickly", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a custom subscription for a lazy-loadable room", - "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should reset the encryption when the continue button is clicked", - "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when connection state changes", "test/unit-tests/components/views/settings/tabs/user/SecurityUserSettingsTab-test.tsx:: > renders security section", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > retrys event on retry click", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (DISALLOWED_APP)", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verification unavailable message", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > that is encrypted > should match the snapshot", "test/unit-tests/models/Call-test.ts::ElementCall > instance in a video room > handles remote disconnection and reconnect right after", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room summary", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should not display the compose menu", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verified badge when user is verified", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should update when key backup status event is fired", + "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show the empty state when there are no pins", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should not render the RoomListSearch component when UIComponent.FilterContainer is at false", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > should render a deactivate button for users of the same server if we are a server admin", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (DISALLOWED_APP)", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > checkSupport > shorts out if the server has 'native' sliding sync support", + "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > renders empty state", "test/unit-tests/models/Call-test.ts::JitsiCall > instance in a video room > emits events when connection state changes", - "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite", + "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should reset the encryption when the continue button is clicked", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (undefined)", "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a subscription for the room", - "test/unit-tests/components/views/right_panel/PinnedMessagesCard-test.tsx:: > should show the empty state when there are no pins", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should not open app after cancelling device verify if unskippable verification is on", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should update when key backup status event is fired", + "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verify button", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should support changing font size by using the font size dropdown [Chrome]", + "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should render manage integrations sections", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_BAD_VERSION)", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when the active space is not MetaSpace.Home", + "settings/quick-settings-menu.spec.ts::settings/quick-settings-menu.spec.ts > Quick settings menu > should be rendered properly [Chrome]", + "test/unit-tests/components/views/rooms/SendMessageComposer-test.tsx:: > attachMentions > test reply", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should not display the space menu", "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > should not display the timeline when the room encryption is loading", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display search and explore buttons", - "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should display the 'forgot recovery key' variant correctly", - "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render empty state", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should render the RoomListSearch component when UIComponent.FilterContainer is at true", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display the dial button when the PTSN protocol is not supported", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should not download image", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > should show a policy link when provided", "test/unit-tests/components/views/rooms/memberlist/MemberTileView-test.tsx::MemberTileView > ThreePidInviteTileView > renders ThreePidInvite correctly", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > renders ", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should not render the RoomListSearch component when UIComponent.FilterContainer is at false", - "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room topic in the summary", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should support enabling system font [Chrome]", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > waits if the room is not yet known", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_UNEXPECTED_RECOVERY_KEY)", "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite when room in not available", - "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > unsends event on cancel click", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > retrys event on retry click", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > subscribes to the room", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > has button to edit topic", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > should match the snapshot", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room summary", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should hide the explore button when UIComponent.ExploreRooms is disabled", + "test/unit-tests/components/views/right_panel/RoomSummaryCard-test.tsx:: > renders the room topic in the summary", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state CREATING should match the snapshot", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (CUSTOM_ERROR_TYPE)", "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > can submit a bug report", - "test/unit-tests/components/structures/FilePanel-test.tsx::FilePanel > renders empty state", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > requests in expanding batchSizes", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListPanel-test.tsx:: > should render the RoomListSearch component when UIComponent.FilterContainer is at true", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display search and explore buttons", + "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > cancel button > unsends event on cancel click", "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should display the compose menu", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should render spaces view [Chrome]", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verified badge when user is verified", + "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to add an existing room to a space after creation [Chrome]", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > should render joined video room view", + "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the reset identity panel when the user clicks on the reset cryptographic identity panel", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > renders verification unavailable message", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display the space menu", + "test/unit-tests/models/Call-test.ts::ElementCall > instance in a non-video room > emits events when connection state changes", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should not open app after cancelling device verify if unskippable verification is on", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > adds a custom subscription for a lazy-loadable room", + "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > renders ", + "settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts::settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts > Appearance user settings tab > should be rendered properly [Chrome]", "test/unit-tests/components/views/settings/tabs/user/PreferencesUserSettingsTab-test.tsx::PreferencesUserSettingsTab > should render", - "test/unit-tests/components/views/settings/SetIntegrationManager-test.tsx::SetIntegrationManager > should render manage integrations sections", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should not display the space menu", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_CUSTOM_REASON)", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (undefined)", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > setRoomVisible > waits if the room is not yet known", - "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should not download image", - "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > checkSupport > shorts out if the server has 'native' sliding sync support", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_BAD_VERSION)", - "test/unit-tests/components/views/auth/InteractiveAuthEntryComponents-test.tsx:: > should render", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state ERROR > should match the snapshot", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (CUSTOM_ERROR_TYPE)", - "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > should show a policy link when provided", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListSearch-test.tsx:: > should display the dial button when the PTSN protocol is not supported", + "test/unit-tests/components/views/settings/encryption/ResetIdentityPanel-test.tsx:: > should display the 'forgot recovery key' variant correctly", + "test/unit-tests/SlidingSyncManager-test.ts::SlidingSyncManager > startSpidering > handles accounts with zero rooms", "test/unit-tests/vector/init-test.ts::showIncompatibleBrowser > should match snapshot", - "test/unit-tests/components/views/right_panel/UserInfo-test.tsx:: > with crypto enabled > should render a deactivate button for users of the same server if we are a server admin", - "test/unit-tests/components/views/settings/tabs/user/EncryptionUserSettingsTab-test.tsx:: > should display the reset identity panel when the user clicks on the reset cryptographic identity panel", - "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should show the complete security screen if unskippable verification is enabled", - "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > video rooms > should render joined video room view", - "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > subscribes to the room", - "test/unit-tests/async-components/structures/ErrorView-test.tsx:: > should match snapshot", - "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > space menu > should display the space menu" + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should render subspaces in the space panel only when expanded [Chrome]", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > should match the snapshot", + "test/unit-tests/components/views/right_panel/ExtensionsCard-test.tsx:: > should render empty state", + "test/unit-tests/components/views/messages/MImageBody-test.tsx:: > with image previews/thumbnails disabled > should render hidden image placeholder", + "test/unit-tests/components/views/rooms/RoomListPanel/RoomListHeaderView-test.tsx:: > compose menu > should not display the compose menu", + "test/unit-tests/components/views/rooms/ThirdPartyMemberInfo-test.tsx:: > should render invite", + "test/unit-tests/components/structures/RoomView-test.tsx::RoomView > for a local room > in state NEW > that is encrypted > should match the snapshot", + "test/unit-tests/stores/RoomViewStore-test.ts::RoomViewStore > Sliding Sync > doesn't get stuck in a loop if you view rooms quickly", + "spaces/spaces.spec.ts::spaces/spaces.spec.ts > Spaces > should allow user to create private space [Chrome]", + "test/unit-tests/components/views/rooms/RoomHeader/RoomHeader-test.tsx::RoomHeader > dm > does not show the face pile for DMs", + "test/unit-tests/components/views/dialogs/BugReportDialog-test.tsx::BugReportDialog > handles bug report upload errors (REJECTED_CUSTOM_REASON)", + "test/unit-tests/components/structures/MatrixChat-test.tsx:: > with an existing session > unskippable verification > should show the complete security screen if unskippable verification is enabled" ], "fail_to_skipped": [], "skipped_to_pass": [], "skipped_to_fail": [], "skipped_to_skipped": [ - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > backslashes", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block surrounded by text", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > underscores within a word", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block followed by newlines", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > adds a new room", - "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > removes a room", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs without newlines", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations with trailing and leading whitespace", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested ordered lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines with trailing and leading whitespace", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested unordered lists", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list directly preceded by text", "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > user pills", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list directly preceded by text", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 as the domain name", + "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should decrypt a range of inputs", "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", "test/unit-tests/components/views/messages/MessageActionBar-test.tsx:: > redaction > updates component on before redaction event", - "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations without separating newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > paragraphs without newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested mixed lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > backslashes", "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list where everything is 1", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > adds a new room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an ordered list directly preceded by text", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block surrounded by text", + "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text and no newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested unordered lists", "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > links without trailing slashes", - "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested mixed lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > nested ordered lists", + "test/unit-tests/stores/room-list/algorithms/list-ordering/ImportanceAlgorithm-test.ts::ImportanceAlgorithm > When sortAlgorithm is manual > handleRoomUpdate > removes a room", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations with trailing and leading whitespace", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > a code block followed by newlines", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 with port as the domain name", - "test/unit-tests/editor/deserialize-test.ts::editor/deserialize > html messages > code block with no trailing text and no newlines", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > HTML messages should round-trip if they contain > nested lists", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > an unordered list directly preceded by text", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > underscores within a word", "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > userid plugin > ip v6 tests > should properly parse IPs v6 as the domain name", - "test/unit-tests/utils/MegolmExportEncryption-test.ts::MegolmExportEncryption > decrypt > should decrypt a range of inputs" + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > newlines with trailing and leading whitespace", + "test/unit-tests/linkify-matrix-test.ts::linkify-matrix > roomalias plugin > ip v6 tests > should properly parse IPs v6 while ignoring dangling comma when without port name as the domain name", + "test/unit-tests/editor/roundtrip-test.ts::editor/roundtrip > markdown messages should round-trip if they contain > quotations without separating newlines" ], "none_to_pass": [], "none_to_fail": [], @@ -10709,19 +10737,19 @@ "flaky_tests": [ { "test_id": "test/unit-tests/components/views/rooms/MessageComposerButtons-test.tsx::MessageComposerButtons > Renders other buttons in menu in wide mode", - "category": "pass_to_pass", - "flaky_in": "both", + "category": "fail_to_pass", + "flaky_in": "end", "start_outcomes": [ "failed", - "passed", + "failed", "failed" ], "end_outcomes": [ - "failed", "passed", - "passed" + "passed", + "failed" ], - "start_merged": "passed", + "start_merged": "failed", "end_merged": "passed" } ], diff --git a/navidrome_navidrome_v0.57.0_v0.58.0/metadata.json b/navidrome_navidrome_v0.57.0_v0.58.0/metadata.json index 7e798c212a6164a93362d415d4e70d66c819cf9c..5cdc46b521a08c6f83b8d42f2376dedfbef4dc5b 100755 --- a/navidrome_navidrome_v0.57.0_v0.58.0/metadata.json +++ b/navidrome_navidrome_v0.57.0_v0.58.0/metadata.json @@ -242,7 +242,7 @@ "modifiable_test_patterns": [ "**/agents_plugin_test.go" ], - "residue_prune": true, + "residue_prune": false, "prune_keep_list": [ "core/mock_library_service.go" ], diff --git a/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/Dockerfile.v1.0 b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/Dockerfile.v1.0 new file mode 100644 index 0000000000000000000000000000000000000000..a76df34eb660bd287ea8b6b78705206a86270046 --- /dev/null +++ b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/Dockerfile.v1.0 @@ -0,0 +1,73 @@ +# v1.0 incremental patch (fix layer over :v0.9) — milestone_G01_48bca0a +# +# Pathology (D-1 diagnosis, 2026-07-11): the v1.0 root Cargo.toml feature +# closure (sqlite -> + nu-protocol/sqlite + nu-cli/sqlite) fixed GT +# self-consistency but broke every e2e mixed tree at the RESOLVER: agent +# snapshots carry only crates/ + src/, so the GT root always wins, while +# 0.106-vintage agent crates lack those features — cargo fails before a +# single line compiles (23/23 archived G01 eval logs, byte-identical error). +# Second layer: nu-cli's own `sqlite` feature misses `nu-protocol/sqlite`, +# and tests/commands/mod.rs misses upstream b6ded63's gating hunk, so +# per-crate `--features sqlite` builds fail even on the GT tree. +# +# Fix (repair_scope_spec D-1; scored tests untouched — harness runs keep the +# root default features, sqlite stays ON, test universe unchanged): +# b1: install /usr/local/bin/apply_patches.sh — evaluator runs it after the +# tar overlay; idempotently injects the missing feature declarations +# into agent-side manifests; no-op on GT overlays. +# b2: complete the in-tree closure on both tags: nu-cli `sqlite` feature +# gains "nu-protocol/sqlite"; gate tests/commands/history_import behind +# the sqlite feature (upstream b6ded63's own hunk, lost in transplant). +# +# Build: docker build -f Dockerfile.v1.0 \ +# -t swe-milestone/nushell_nushell_0.106.0_0.108.0__milestone_g01_48bca0a:v1.0 . +FROM swe-milestone/nushell_nushell_0.106.0_0.108.0__milestone_g01_48bca0a:v0.9 + +# ---- b1: mixed-tree conciliation hook ---- +COPY apply_patches.sh /usr/local/bin/apply_patches.sh +RUN chmod +x /usr/local/bin/apply_patches.sh + +# ---- b2 on END ---- +RUN cd /testbed && git checkout --force milestone-milestone_G01_48bca0a-end && git clean -fd && \ + (grep -q 'sqlite = \["reedline/sqlite", "nu-protocol/sqlite"\]' crates/nu-cli/Cargo.toml || \ + sed -i 's|^sqlite = \["reedline/sqlite"\]$|sqlite = ["reedline/sqlite", "nu-protocol/sqlite"]|' crates/nu-cli/Cargo.toml) && \ + grep -q 'sqlite = \["reedline/sqlite", "nu-protocol/sqlite"\]' crates/nu-cli/Cargo.toml && \ + (grep -B1 'mod history_import;' crates/nu-cli/tests/commands/mod.rs | grep -q 'cfg(feature = "sqlite")' || \ + sed -i 's|^mod history_import;$|#[cfg(feature = "sqlite")]\nmod history_import;|' crates/nu-cli/tests/commands/mod.rs) && \ + git add -A && \ + git commit -m "[ENV-PATCH v1.0-fix1] complete nu-cli sqlite feature closure; gate history_import tests (upstream b6ded63 hunk)" && \ + git tag -f milestone-milestone_G01_48bca0a-end HEAD + +# ---- b2 on START (same two guarded fixes) ---- +RUN cd /testbed && git checkout --force milestone-milestone_G01_48bca0a-start && git clean -fd && \ + (grep -q 'sqlite = \["reedline/sqlite", "nu-protocol/sqlite"\]' crates/nu-cli/Cargo.toml || \ + sed -i 's|^sqlite = \["reedline/sqlite"\]$|sqlite = ["reedline/sqlite", "nu-protocol/sqlite"]|' crates/nu-cli/Cargo.toml) && \ + grep -q 'sqlite = \["reedline/sqlite", "nu-protocol/sqlite"\]' crates/nu-cli/Cargo.toml && \ + (grep -B1 'mod history_import;' crates/nu-cli/tests/commands/mod.rs | grep -q 'cfg(feature = "sqlite")' || \ + sed -i 's|^mod history_import;$|#[cfg(feature = "sqlite")]\nmod history_import;|' crates/nu-cli/tests/commands/mod.rs) && \ + git add -A && \ + git commit -m "[ENV-PATCH v1.0-fix1] complete nu-cli sqlite feature closure; gate history_import tests (START)" && \ + git tag -f milestone-milestone_G01_48bca0a-start HEAD + +# ---- Verify with teeth (build fails on any compile error) ---- +# E3: the closure this layer claims to fix (was error[E0599] x7 pre-fix) +# E1: no-feature per-crate build (was unresolved imports in history_import) +# E4: harness-parity workspace check (scoring gate) +# NOTE: docker-build RUN uses /bin/sh, which skips the image's bashrc/entrypoint +# ulimit setup — raise nofile explicitly or parallel rustc dies with EMFILE. +RUN cd /testbed && git checkout --force milestone-milestone_G01_48bca0a-end && git clean -fd && \ + ulimit -n 65536 && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check -p nu-cli -p nu-protocol --all-targets --features nu-cli/sqlite,nu-protocol/sqlite && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check -p nu-cli --all-targets && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check --workspace --all-targets --profile ci && \ + rm -rf /tmp/vtarget && \ + echo "VERIFY OK: END closure + no-feature + workspace all green" + +RUN cd /testbed && git checkout --force milestone-milestone_G01_48bca0a-start && git clean -fd && \ + ulimit -n 65536 && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check -p nu-cli --all-targets && \ + rm -rf /tmp/vtarget && \ + echo "VERIFY OK: START no-feature green" + +# ---- Restore default state (START), matching the original image convention ---- +RUN cd /testbed && git checkout --force milestone-milestone_G01_48bca0a-start && git clean -fd diff --git a/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/apply_patches.sh b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/apply_patches.sh new file mode 100644 index 0000000000000000000000000000000000000000..181bf4b02eb833c5d6ea5b77a6b09d8ac2b85ac8 --- /dev/null +++ b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_G01_48bca0a/apply_patches.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# [ENV-PATCH v1.0-fix1] e2e mixed-tree conciliation for milestone_G01_48bca0a. +# +# The evaluator runs this hook inside /testbed AFTER overlaying the agent's +# source snapshot (harness/e2e/evaluator.py, apply_patches.sh call site). +# The GT root Cargo.toml (always kept — snapshots carry only crates/ and src/) +# requires the `nu-protocol/sqlite` and `nu-cli/sqlite` features, which +# 0.106-vintage agent crates predate; cargo's resolver then rejects the mixed +# tree before compiling anything. Inject the missing feature declarations, +# guarded so GT overlays and already-migrated agent trees are untouched. +# Never touches test files or scored behavior. +set -u +cd /testbed 2>/dev/null || exit 0 + +inject_feature() { + local manifest="$1" decl="$2" + [ -f "$manifest" ] || return 0 + grep -qE '^sqlite[[:space:]]*=' "$manifest" && return 0 + if grep -q '^\[features\]' "$manifest"; then + sed -i "/^\\[features\\]/a $decl" "$manifest" + else + printf '\n[features]\n%s\n' "$decl" >> "$manifest" + fi + echo "[apply_patches v1.0-fix1] injected '$decl' into $manifest" +} + +inject_feature crates/nu-protocol/Cargo.toml 'sqlite = []' +inject_feature crates/nu-cli/Cargo.toml 'sqlite = ["reedline/sqlite", "nu-protocol/sqlite"]' +exit 0 diff --git a/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/Dockerfile.v1.0 b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/Dockerfile.v1.0 new file mode 100644 index 0000000000000000000000000000000000000000..06ffeacaf1d54cf2a64c4b6d0bd23aa66286ae7e --- /dev/null +++ b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/Dockerfile.v1.0 @@ -0,0 +1,43 @@ +# v1.0 incremental patch (fix layer over :v0.9) — milestone_core_development.4 +# +# Pathology (D-1 diagnosis, 2026-07-11): all-arm zero via cargo RESOLVER +# failure in the e2e mixed tree (17/17 archived eval logs byte-identical: +# `failed to select a version for the requirement "nu-cli = ^0.106.1"`). +# This milestone is the 0.106->0.107 version-bump/dep-migration work; agent +# snapshots carry only crates/ + src/, so the agent's root-manifest half of +# that work is dropped at evaluation and the GT root (path-dep version pins, +# sqlite feature closure, ureq =3.0.12) confronts agent-vintage crates. +# Conciliation validated live against a real opus-4.7 snapshot +# (resolver: pins -> sqlite features -> ureq vintage -> exit 0) and arm +# variance checked (ureq/tls vs ureq/rustls trees). +# +# Fix: install the runtime conciliation hook only (see apply_patches.sh); +# the GT trees themselves stay untouched — GT self-consistency was already +# green at the harness compile surface (known benign bench seam +# benches/benchmarks.rs E0432 recorded in repair_scope_spec, not fixed here, +# benches are outside the harness `cargo test` surface). +# +# Build: docker build -f Dockerfile.v1.0 \ +# -t swe-milestone/nushell_nushell_0.106.0_0.108.0__milestone_core_development.4:v1.0 . +FROM swe-milestone/nushell_nushell_0.106.0_0.108.0__milestone_core_development.4:v0.9 + +# ---- mixed-tree conciliation hook ---- +COPY apply_patches.sh /usr/local/bin/apply_patches.sh +RUN chmod +x /usr/local/bin/apply_patches.sh + +# ---- Verify with teeth: harness-parity compile surface (tests, not benches) +# on both tags; docker-build RUN skips bashrc/entrypoint, so raise nofile. +RUN cd /testbed && git checkout --force milestone-milestone_core_development.4-end && git clean -fd && \ + ulimit -n 65536 && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check --workspace --tests --profile ci && \ + rm -rf /tmp/vtarget && \ + echo "VERIFY OK: END workspace tests-surface green" + +RUN cd /testbed && git checkout --force milestone-milestone_core_development.4-start && git clean -fd && \ + ulimit -n 65536 && \ + CARGO_TARGET_DIR=/tmp/vtarget cargo check --workspace --tests --profile ci && \ + rm -rf /tmp/vtarget && \ + echo "VERIFY OK: START workspace tests-surface green" + +# ---- Restore default state (START), matching the original image convention ---- +RUN cd /testbed && git checkout --force milestone-milestone_core_development.4-start && git clean -fd diff --git a/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/apply_patches.sh b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/apply_patches.sh new file mode 100644 index 0000000000000000000000000000000000000000..8b240eb4f5824db09692e52990e07ec2ba6648a4 --- /dev/null +++ b/nushell_nushell_0.106.0_0.108.0/dockerfiles/milestone_core_development.4/apply_patches.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# [ENV-PATCH v1.0-fix1] e2e mixed-tree conciliation for milestone_core_development.4. +# +# Runs inside /testbed after the agent snapshot overlay (evaluator hook). +# This milestone IS the 0.106->0.107 version-bump/dep-migration work, and the +# snapshot policy drops the agent's root-Cargo.toml half of it (snapshots carry +# only crates/ + src/), so the GT root always confronts agent-vintage crates: +# (1) root path-deps pin version = "0.107.1" -> agent crates are 0.106.0; +# (2) root sqlite feature closure references nu-protocol/sqlite, nu-cli/sqlite +# which pre-migration agent crates lack; +# (3) root pins ureq =3.0.12, while half-migrated agent trees still reference +# the ureq-2 feature name "ureq/tls" (fully migrated trees use +# "ureq/rustls" and keep ureq 3). +# All steps are guarded/idempotent; on a GT overlay (empty tar) steps 2-3 are +# no-ops and step 1 only drops redundant path-dep version checks. +# Never touches test files or scored behavior. +set -u +cd /testbed 2>/dev/null || exit 0 + +# (1) path-dep version pins: path resolution does not need them +sed -i -E '/path = "\.\/crates\//s/, version = "[^"]*"//' Cargo.toml + +# (2) sqlite feature declarations expected by the root closure +inject_feature() { + local manifest="$1" decl="$2" + [ -f "$manifest" ] || return 0 + grep -qE '^sqlite[[:space:]]*=' "$manifest" && return 0 + if grep -q '^\[features\]' "$manifest"; then + sed -i "/^\\[features\\]/a $decl" "$manifest" + else + printf '\n[features]\n%s\n' "$decl" >> "$manifest" + fi + echo "[apply_patches v1.0-fix1] injected '$decl' into $manifest" +} +inject_feature crates/nu-protocol/Cargo.toml 'sqlite = []' +inject_feature crates/nu-cli/Cargo.toml 'sqlite = ["reedline/sqlite", "nu-protocol/sqlite"]' + +# (3) ureq vintage conciliation: only when the overlaid tree still speaks ureq-2 +if grep -q '"ureq/tls"' crates/nu-command/Cargo.toml 2>/dev/null && \ + grep -qE '^ureq = .*version = "=?3' Cargo.toml; then + sed -i 's|^ureq = .*|ureq = { version = "2.12.1", default-features = false, features = ["socks-proxy"] }|' Cargo.toml + echo "[apply_patches v1.0-fix1] pinned root ureq to 2.12.1 (agent tree references ureq/tls)" +fi +exit 0 diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/M028/test_config.json b/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/M028/test_config.json index 7475028cd489425edd038be5454616fa3ec0b250..27d1ed690d0ec94dfacecccea29379625cc8cac9 100755 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/M028/test_config.json +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/M028/test_config.json @@ -5,7 +5,7 @@ "start", "end" ], - "test_cmd": "cd /testbed && go mod tidy && go test -json -timeout {timeout}s -parallel {workers} -bench=. -benchtime=1x ./... 2>&1 | tee /output/{output_file}", + "test_cmd": "cd /testbed && go test -json -timeout {timeout}s -parallel {workers} -bench=. -benchtime=1x ./... 2>&1 | tee /output/{output_file}", "description": "Run all Go tests and benchmarks with JSON output" } -] \ No newline at end of file +] diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/evaluation_post_snapshot.sh b/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/evaluation_post_snapshot.sh new file mode 100755 index 0000000000000000000000000000000000000000..2c56e00790826c85f2f0daeab34f48ea86c76644 --- /dev/null +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/dockerfiles/evaluation_post_snapshot.sh @@ -0,0 +1,112 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /testbed + +# Evaluator-owned Go manifest closure for grafted END tests (legacy snapshots). +# +# When a legacy snapshot (no integrity sidecar; agent manifest edits were never +# captured) is evaluated on the START fallback base, the evaluator grafts the +# END tag's authoritative tests onto a START-era go.mod. Those tests may need +# modules (goleak, gock, ...) that START does not yet declare, and the offline +# container cannot `go mod tidy`. Backfill ONLY the require lines whose module +# path is missing from the working go.mod, taking versions from the END +# manifest, plus the matching go.sum entries. Version conflicts also align to +# END: under a legacy snapshot the working go.mod is the checked-out tag's own +# (agent manifest edits were never captured), so a START-era version pin does +# not represent any agent decision, while the END require set is the compile +# contract of the grafted END tests. Constraints: +# - never run `go mod tidy` (offline; it would also rewrite the module graph +# beyond the END contract) +# - never remove a require the working tree declares beyond END's version +# - fresh (non-legacy) snapshots are untouched: their manifests are +# agent-authoritative via the exact projection + closure machinery. + +if [[ "${SWE_MILESTONE_LEGACY_SNAPSHOT:-0}" != "1" ]]; then + echo ">>> go.mod backfill: fresh snapshot - no-op" + exit 0 +fi + +mid="${SWE_MILESTONE_ID:?SWE_MILESTONE_ID not provided by evaluator}" +end_tag="milestone-${mid}-end" + +# Pure-local go operations only. +export GOPROXY=off GOSUMDB=off GOTOOLCHAIN=local GOFLAGS= + +if [[ ! -f go.mod ]]; then + echo ">>> go.mod backfill: no go.mod at repo root - nothing to do" + exit 0 +fi +if ! git rev-parse -q --verify "refs/tags/${end_tag}" >/dev/null; then + echo "!!! go.mod backfill: END tag ${end_tag} missing" >&2 + exit 1 +fi + +# Toolchain-generation alignment. Legacy agents ran on newer Go toolchains +# and bumped the go directive in their never-captured go.mod; the evaluation +# toolchain then refuses newer language features under -mod=readonly against +# the tag's stale directive ("updates to go.mod needed"). Align the directive +# UP (never down) to the evaluation toolchain's language version — a pure +# metadata change, backward compatible for GT sources and tests. +tool_lang=$(go env GOVERSION 2>/dev/null | sed -E 's/^go([0-9]+\.[0-9]+).*/\1/') +cur_lang=$(awk '$1=="go"{print $2; exit}' go.mod) +if [[ -n "$tool_lang" && -n "$cur_lang" && "$cur_lang" != "$tool_lang" ]]; then + highest=$(printf '%s\n' "$cur_lang" "$tool_lang" | sort -V | tail -1) + if [[ "$highest" == "$tool_lang" ]]; then + go mod edit -go="$tool_lang" + echo ">>> go.mod backfill: go directive ${cur_lang} -> ${tool_lang} (eval toolchain alignment)" + fi +fi + +gt_mod=$(mktemp) +gt_sum=$(mktemp) +git show "${end_tag}:go.mod" > "$gt_mod" +git show "${end_tag}:go.sum" > "$gt_sum" 2>/dev/null || : > "$gt_sum" + +# Print "module version" pairs from a go.mod's require directives. +requires() { + awk ' + /^require[ \t]*\(/ { inblock = 1; next } + inblock && /^\)/ { inblock = 0; next } + inblock && NF >= 2 { print $1, $2 } + /^require[ \t]+[^ \t(]/ { print $2, $3 } + ' "$1" +} + +declare -A have=() +while read -r m v; do + [[ -n "$m" ]] && have["$m"]="$v" +done < <(requires go.mod) + +added=0 +aligned=0 +while read -r m v; do + [[ -z "$m" ]] && continue + cur="${have[$m]:-}" + if [[ -z "$cur" ]]; then + go mod edit -require="${m}@${v}" + echo ">>> go.mod backfill: +require ${m} ${v} (from ${end_tag})" + added=$((added + 1)) + elif [[ "$cur" != "$v" ]]; then + go mod edit -require="${m}@${v}" + echo ">>> go.mod backfill: ~require ${m} ${cur} -> ${v} (align to ${end_tag})" + aligned=$((aligned + 1)) + fi +done < <(requires "$gt_mod") + +if (( added + aligned == 0 )); then + echo ">>> go.mod backfill: no missing/misaligned requires - no-op" + exit 0 +fi + +# go.sum: append the END entries the working sum lacks. go.sum is +# order-insensitive and superfluous entries are harmless, so the whole +# missing-line set is safe to add wholesale. +touch go.sum +new_sum_lines=$(comm -13 <(sort -u go.sum) <(sort -u "$gt_sum") || true) +sum_count=0 +if [[ -n "$new_sum_lines" ]]; then + printf '%s\n' "$new_sum_lines" >> go.sum + sum_count=$(printf '%s\n' "$new_sum_lines" | wc -l) +fi +echo ">>> go.mod backfill: ${added} require(s) injected, ${aligned} aligned, ${sum_count} go.sum line(s) appended" diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/metadata.json b/zeromicro_go-zero_v1.6.0_v1.9.3/metadata.json index 8be548d2458b0c6e5a1e7d4183b2fe9e08fe1602..933e4014b364e6c0ba598d32b6c8e1bb57e72a7b 100755 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/metadata.json +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/metadata.json @@ -399,7 +399,7 @@ ] } ], - "residue_prune": true, + "residue_prune": false, "prune_keep_list": [ "core/stores/dbtest/sql.go" ], diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M004/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M004/SRS.md index a05d5582730e2ba681884855348e869e68a649f8..8117411317664da5491fe9a0c7fe6837e7d803cd 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M004/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M004/SRS.md @@ -37,6 +37,7 @@ This milestone addresses CPU monitoring and adaptive load shedding improvements - The upper-bound function returns the smaller of the input value or the specified upper bound - The range-clamping function clamps values to the specified range, with defined behavior when bounds are invalid - All functions work consistently with standard numeric types (int/int8/int16/int32/int64, uint/uint8/uint16/uint32/uint64, float32/float64) +- The three functions are exported from `core/mathx` under the exact names `AtLeast` (lower-bound), `AtMost` (upper-bound), and `Between` (range-clamping); `Between`'s parameters are ordered as (value, lower bound, upper bound) --- diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M005/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M005/SRS.md index e76c2f107fe5bc4e7e003f1264fcea10b0678edc..795833252726fb379168f9045e55ebd97bb07a77 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M005/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M005/SRS.md @@ -44,13 +44,15 @@ This milestone introduces statement-level circuit breaker support for SQL operat **Requirements**: - A no-operation breaker must be publicly accessible to allow its use with transaction statements +- The breaker package must expose that constructor with the exact public API `func NopBreaker() Breaker` (the required symbol is `NopBreaker`, not an alternative spelling such as `NoopBreaker`) - The no-operation breaker must implement the full Breaker interface but never trigger the circuit -- Transaction-scoped prepared statements must use the no-operation breaker +- Transaction-scoped prepared statements must obtain the no-operation breaker by calling `breaker.NopBreaker()` **Acceptance**: +- Calling `breaker.NopBreaker()` must compile and return a value implementing the `Breaker` interface - When a prepared statement is created within a transaction, it uses a no-operation breaker - When executing transaction statements, the no-operation breaker does not block requests regardless of error history -- The breaker package must export a public function to obtain a no-operation breaker instance +- The breaker package must export the exact `NopBreaker` function name and signature; a differently named helper does not satisfy this API contract --- diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M006/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M006/SRS.md index 4e10e3db42354e86f9225fb93f3580a33a872d19..925d28db48a36c6eaac793c00bfae16ad2016b12 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M006/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M006/SRS.md @@ -146,25 +146,7 @@ The key change ensures uniqueness when multiple context keys are used. - Existing `NewSqlConn` and `NewSqlConnFromDB` functions must continue to work - Their `connProvider` implementations must be updated to accept context but can ignore it -## 4. Test Verification Points - -### 4.1 Configuration Tests -- `TestValidate`: Verifies default values and validation errors -- `TestConfigSqlConn`: Verifies basic connection creation with `SqlConf` -- `TestConfigSqlConnErr`: Verifies error handling for invalid configurations - -### 4.2 Mode Tests -- `TestIsValid`: Verifies mode validation logic -- `TestWithReadMode`: Verifies `WithReadPrimary` and `WithReadReplica` functions -- `TestWithWriteMode`: Verifies `WithWrite` function -- `TestGetReadWriteMode`: Verifies mode retrieval from context -- `TestUsePrimary`: Verifies primary selection logic -- `TestWithModeTwice`: Verifies mode override behavior - -### 4.3 Provider Tests -- `TestProvider`: Verifies connection routing based on mode and policy - -## 5. Files to Modify/Create +## 4. Files to Modify/Create | File | Action | |------|--------| diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M007.1/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M007.1/SRS.md index 024b8484a1f3a6130a7cc67f946d0b992163797f..7169f6ff50b2c245988ad6b8a36e252910e5719e 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M007.1/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M007.1/SRS.md @@ -42,6 +42,7 @@ This milestone delivers a configuration center infrastructure with etcd backend **Acceptance**: - A generic configurator constructor must accept a configuration object and a Subscriber interface +- This constructor must be exported under the exact name and signature `NewConfigCenter[T any](c Config, subscriber subscriber.Subscriber) (Configurator[T], error)`, despite the interface being named `Configurator` - Both standard and must-variant constructors must be provided - The Config struct must include: - A `Type` string field with default value `"yaml"` and valid options `[yaml, json, toml]` diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M013/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M013/SRS.md index d9fb323ba3d1aad076f6efaa567fa282a3be931c..2afec325867268e62fd37d72bd8acc6e9b1a1192 100755 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M013/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M013/SRS.md @@ -42,6 +42,7 @@ This specification defines requirements for implementing consistent hash load ba - When no backends are available, the standard gRPC `ErrNoSubConnAvailable` error is returned - The balancer implementation in `zrpc/internal/balancer/consistenthash/` must use unexported type `pickerBuilder` (implementing `base.PickerBuilder`) and `picker` (implementing `balancer.Picker`), with the consistent hash ring stored in a field named `hashRing` of type `*hash.ConsistentHash` (from `core/hash` package), a `conns` field of type `map[string]balancer.SubConn` mapping addresses to sub-connections, and a package-level constant `defaultReplicaCount` defining the number of virtual nodes per real node - Error messages from the picker must use the prefix `[consistent_hash]` (e.g., `[consistent_hash] missing hash key`) +- For three specific ring-lookup failures the picker must return these exact message texts (each distinct from `ErrNoSubConnAvailable`): `[consistent_hash] no matching conn for hashKey: ` (no ring match for the request's hash key), `[consistent_hash] invalid addr type in consistent hash` (ring node value not a string address), and `[consistent_hash] no subConn for addr: ` (resolved address has no corresponding sub-connection) --- diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M014/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M014/SRS.md index 10b831a227c112650628d0817d843b817b9a977d..7b78cb28a4009f53f4bb6997ec39917b09a47587 100755 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M014/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M014/SRS.md @@ -41,6 +41,7 @@ This milestone introduces continuous profiling capabilities integrated with Pyro - When no server address is provided, profiling remains disabled without errors - When profiling is active, data is uploaded to the configured server at the specified upload rate - When the service shuts down, the profiling goroutine terminates cleanly +- The configuration exposes the Pyroscope server address as field `ServerAddr`, and the optional HTTP basic-auth credentials as fields `AuthUser` and `AuthPassword` --- @@ -87,6 +88,7 @@ This milestone introduces continuous profiling capabilities integrated with Pyro - When mutex profiling is enabled, runtime mutex profile fraction is set appropriately - When block profiling is enabled, runtime block profile rate is set appropriately - When profiling stops, runtime profiling settings are reset to zero +- The profile-category toggles are aggregated in an exported struct type `ProfileType` whose exported boolean fields are exactly `Logger`, `CPU`, `Goroutines`, `Memory`, `Mutex`, and `Block` --- diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M019/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M019/SRS.md index 57b0ab3bbf32134f695196e24b0ac10ae5cd0708..1c8a1e045ef7d118246436358c7e0dec5f9124a1 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M019/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M019/SRS.md @@ -46,6 +46,7 @@ This milestone addresses several enhancements and fixes for HTTP request parsing - When a request contains `?name=hello&name=world`, parsing into a struct with field `Name []string` results in `[]string{"hello", "world"}` - When a request contains `?age=18`, parsing into a struct with field `Age int` correctly assigns the integer value 18 - When a request contains `?name=&name=valid`, only non-empty values are collected +- The option enabling this array-extraction behavior must be exported from `core/mapping` as `WithFromArray() UnmarshalOption` (a zero-argument `UnmarshalOption` constructor) --- diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M023/SRS.md b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M023/SRS.md index 35a8cfc7fc91be80413d2eb4e9ef69bdc741cf1b..9e714a9112994f58107b42b6d720e7a53cef5cc1 100644 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M023/SRS.md +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/srs/M023/SRS.md @@ -2,7 +2,7 @@ ## Overview -This milestone addresses multiple improvements and bug fixes in the SQL/ORM functionality of go-zero: +This milestone addresses multiple improvements and bug fixes in the SQL/ORM and health-check functionality of go-zero: 1. **FR1**: Rename sqlx metrics namespace for database-agnostic consistency 2. **FR2**: Restrict connection pool metrics collection to MySQL connections only @@ -10,6 +10,7 @@ This milestone addresses multiple improvements and bug fixes in the SQL/ORM func 4. **FR4**: Add field tag skip logic (`db:"-"`) in ORM field unwrapping 5. **FR5**: Fix zero value scanning for pointer destination fields in ORM 6. **FR6**: Add partial query methods to cached SQL layer +7. **FR7**: Health-check HTTP handler signature and readiness semantics **Affected Modules**: - `core/stores/sqlx` (SQL connection, ORM, metrics) @@ -154,3 +155,20 @@ type Record struct { - When calling `QueryRowsPartialNoCache` on a cached connection, multiple rows can be retrieved without caching - Context-aware versions properly propagate the context to the underlying database calls - Partial queries correctly handle structs with a subset of fields mapped to database columns + +--- + +### FR7: Health-Check Handler Signature and Readiness Semantics + +**Requirements**: +- Extend the `internal/health` surface: the HTTP handler is driven by a + caller-supplied response body, and the combined health manager reports + readiness based on its registered probes. + +**Acceptance**: +- The exported function `CreateHttpHandler` in package `internal/health` accepts + exactly one parameter of type `string` (the health-response body) and returns + `http.HandlerFunc` — `func CreateHttpHandler(string) http.HandlerFunc`. +- The combined health manager's `IsReady() bool` returns `false` when no probes + have been registered (an empty probe set is not "ready"); once at least one + probe is registered, readiness follows the composition of the registered probes. diff --git a/zeromicro_go-zero_v1.6.0_v1.9.3/test_results/M021/M021_filter_list.json b/zeromicro_go-zero_v1.6.0_v1.9.3/test_results/M021/M021_filter_list.json index dff25454eaea28c1f80a1b33dcc66af5d7c460e6..b9e4a8037c34246cb761c4ec9b709a4aae190e54 100755 --- a/zeromicro_go-zero_v1.6.0_v1.9.3/test_results/M021/M021_filter_list.json +++ b/zeromicro_go-zero_v1.6.0_v1.9.3/test_results/M021/M021_filter_list.json @@ -1,4 +1,15 @@ { "invalid_fail_to_pass": [], - "invalid_none_to_pass": [] + "invalid_none_to_pass": [ + "github.com/zeromicro/go-zero/internal/health/TestAddGlobalProbes/concurrent_add_probes", + "github.com/zeromicro/go-zero/internal/health/TestComboHealthManager", + "github.com/zeromicro/go-zero/internal/health/TestComboHealthManager/concurrent_add_probes", + "github.com/zeromicro/go-zero/internal/health/TestHealthManager", + "github.com/zeromicro/go-zero/internal/health/TestCreateHttpHandler", + "github.com/zeromicro/go-zero/internal/health/TestComboHealthManager/base", + "github.com/zeromicro/go-zero/internal/health/TestAddGlobalProbes", + "github.com/zeromicro/go-zero/internal/health/TestHealthManager/concurrent_should_works", + "github.com/zeromicro/go-zero/internal/health/TestComboHealthManager/is_ready_verbose", + "github.com/zeromicro/go-zero/internal/health/TestComboHealthManager/markReady_and_markNotReady" + ] }