Skip to content

Commit 8252d9f

Browse files
authored
fix(e2e test): Skip test that fails when bumping package versions. (#25677)
## Description This PR skips a failing test that was blocking #25672. While disabled, we have other [unit tests](https://github.com/microsoft/FluidFramework/blob/caa4550ea098d2b2455e0db863e244a6b6d22826/packages/runtime/container-runtime/src/test/documentSchema.spec.ts#L722) to cover this functionality.
1 parent caa4550 commit 8252d9f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/test/test-end-to-end-tests/src/test/containerRuntime.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,10 @@ describeCompat(
304304
* This test is to validate that we properly send a telemetry event when
305305
* we detect that a client tries to connect to a document that has a
306306
* minVersionForCollab that is greater than that clients's runtime version.
307+
*
308+
* TODO: Test will be enabled when AB#50563 is resolved.
307309
*/
308-
it("sends a warning telemetry event for clients less than minVersionForCollab", async function () {
310+
it.skip("sends a warning telemetry event for clients less than minVersionForCollab", async function () {
309311
const releaseMinVersionForCollabWarningAdded = "2.43.0";
310312
if (
311313
apis.containerRuntimeForLoading === undefined ||

0 commit comments

Comments
 (0)