You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other info: I'm trying to figure out if parallel test case execution is supported in the .NET version of Playwright. The documentation mentions, Running test in parallel using ParallelScope.All or ParallelScope.Fixtures is not supported. Does this mean parallel test execution isn't supported at all, or is it just specific tags on methods or classes that aren't supported?
/// <summary>/// Specifies the degree to which a test, and its descendants, /// may be run in parallel./// </summary>[Flags]publicenumParallelScope{/// <summary>/// The test may be run in parallel with others at the same level./// Valid on classes and methods but has no effect on assemblies./// </summary>Self=1,/// <summary>/// Descendants of the test may be run in parallel with one another./// Valid on assemblies and classes but not on non-parameterized methods./// </summary>Children=256,/// <summary>/// Descendants of the test down to the level of TestFixtures may be /// run in parallel with one another. Valid on assemblies and classes/// but not on methods./// </summary>Fixtures=512,/// <summary>/// The test and its descendants may be run in parallel with others at/// the same level. Valid on classes and parameterized methods./// For assemblies it is recommended to use <see cref="Children"/>/// instead, as <see cref="Self"/> has no effect on assemblies./// </summary>All=Self+Children}}
Source code
[X ] I provided exact source code that allows reproducing the issue locally.
Tests should run in parallel if parallel test case execution is supported.
Test should be shardable.
Actual
Tests run in parallel but I'm not sure if it's because my test cases are simple.
Test seem to be able to be shardable but I'm still working on it on my repo poc.
The text was updated successfully, but these errors were encountered:
System info
Source code
Link to the GitHub repository with the repro
Steps
Expected
Tests should run in parallel if parallel test case execution is supported.
Test should be shardable.
Actual
Tests run in parallel but I'm not sure if it's because my test cases are simple.
Test seem to be able to be shardable but I'm still working on it on my repo poc.
The text was updated successfully, but these errors were encountered: