15 lines
169 B
C#
Raw Normal View History

2023-08-24 19:31:32 +02:00
namespace PlaywrightTests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}