28
28
29
29
// Run all tests in sequence
30
30
[ assembly: LevelOfParallelism ( 1 ) ]
31
+ [ assembly: Parallelizable ( ParallelScope . Fixtures ) ]
31
32
32
33
namespace Microsoft . Playwright . Tests ;
33
34
34
35
/// <summary>
35
36
/// Enables decorating test facts with information about the corresponding test in the upstream repository.
36
37
/// </summary>
37
38
[ AttributeUsage ( AttributeTargets . Method , AllowMultiple = true ) ]
38
- public class PlaywrightTestAttribute : TestAttribute , IWrapSetUpTearDown
39
+ public class PlaywrightTestAttribute : TestAttribute , IApplyToContext , IApplyToTest , IWrapSetUpTearDown
39
40
{
41
+ private readonly CancelAfterAttribute _cancelAfterAttribute = new ( TestConstants . DefaultTestTimeout ) ;
42
+
40
43
public PlaywrightTestAttribute ( )
41
44
{
42
45
}
@@ -52,17 +55,6 @@ public PlaywrightTestAttribute(string fileName, string nameOfTest)
52
55
TestName = nameOfTest ;
53
56
}
54
57
55
- /// <summary>
56
- /// Creates a new instance of the attribute.
57
- /// </summary>
58
- /// <param name="fileName"><see cref="FileName"/></param>
59
- /// <param name="describe"><see cref="Describe"/></param>
60
- /// <param name="nameOfTest"><see cref="TestName"/></param>
61
- public PlaywrightTestAttribute ( string fileName , string describe , string nameOfTest ) : this ( fileName , nameOfTest )
62
- {
63
- Describe = describe ;
64
- }
65
-
66
58
/// <summary>
67
59
/// The file name origin of the test.
68
60
/// </summary>
@@ -83,6 +75,22 @@ public PlaywrightTestAttribute(string fileName, string describe, string nameOfTe
83
75
/// </summary>
84
76
public string Describe { get ; }
85
77
78
+ public void ApplyToContext ( TestExecutionContext context )
79
+ {
80
+ if ( context . TestCaseTimeout == 0 )
81
+ {
82
+ ( _cancelAfterAttribute as IApplyToContext ) . ApplyToContext ( context ) ;
83
+ }
84
+ }
85
+
86
+ public new void ApplyToTest ( Test test )
87
+ {
88
+ base . ApplyToTest ( test ) ;
89
+ if ( TestExecutionContext . CurrentContext . TestCaseTimeout == 0 )
90
+ {
91
+ _cancelAfterAttribute . ApplyToTest ( test ) ;
92
+ }
93
+ }
86
94
/// <summary>
87
95
/// Wraps the current test command in a <see cref="UnobservedTaskExceptionCommand"/>.
88
96
/// </summary>
0 commit comments