Skip to content

Commit 93b7ee7

Browse files
committed
test: remove ShouldPlayVideo test
1 parent 5d489a9 commit 93b7ee7

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Playwright.Tests/CapabilitiesTests.cs

-9
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,4 @@ public async Task ShouldRespectCSP()
7676
await Page.GotoAsync(Server.EmptyPage);
7777
Assert.AreEqual("SUCCESS", await Page.EvaluateAsync<string>("() => window.testStatus"));
7878
}
79-
80-
[PlaywrightTest("capabilities.spec.ts", "should play video")]
81-
[Skip(SkipAttribute.Targets.Webkit | SkipAttribute.Targets.Linux, SkipAttribute.Targets.Webkit | SkipAttribute.Targets.Windows, SkipAttribute.Targets.Firefox)]
82-
public async Task ShouldPlayVideo()
83-
{
84-
await Page.GotoAsync(Server.Prefix + (TestConstants.IsWebKit ? "/video_mp4.html" : "/video.html"));
85-
await Page.EvalOnSelectorAsync("video", "v => v.play()");
86-
await Page.EvalOnSelectorAsync("video", "v => v.pause()");
87-
}
8879
}

0 commit comments

Comments
 (0)