15 lines
169 B
C#
15 lines
169 B
C#
namespace PlaywrightTests;
|
|
|
|
public class Tests
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void Test1()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
} |