File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments