Playwright_DotNet/PlaywrightDotNetDemo/UnitTest1.cs

15 lines
174 B
C#

namespace PlaywrightDotNetDemo;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}