Skip to content

Commit fdcbdd8

Browse files
authored
Add ignored pipe tests (#1791)
1 parent a9afdc6 commit fdcbdd8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Threading.Tasks;
3+
using PuppeteerSharp.Xunit;
4+
using Xunit;
5+
using Xunit.Abstractions;
6+
7+
namespace PuppeteerSharp.Tests
8+
{
9+
[Collection(TestConstants.TestFixtureCollectionName)]
10+
public class WontImplementTests : PuppeteerPageBaseTest
11+
{
12+
public WontImplementTests(ITestOutputHelper output) : base(output)
13+
{
14+
}
15+
16+
// We don't implement pipes
17+
[PuppeteerTest("chromiumonly.spec.ts", "Puppeteer.launch |pipe| option", "should support the pipe option")]
18+
[PuppeteerTest("chromiumonly.spec.ts", "Puppeteer.launch |pipe| option", "should support the pipe argument")]
19+
[PuppeteerTest("chromiumonly.spec.ts", "Puppeteer.launch |pipe| option", "should fire \"disconnected\" when closing with pipe")]
20+
[Fact(Timeout = TestConstants.DefaultTestTimeout)]
21+
public void TheseTesstWontBeImplemented()
22+
{
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)