* tests: setup initial infra for end to end tests * tests: rework end to end host * tests: remove need for bang operator * tests: correct header component tests * docs: add README.md to blog directory with instructions on setting up local dev environment with and without docker * docs: update non-developer run command * feat: finish layout of header * feat: add favicon * tests: setup test coverage * chore: update workflow with missing playwright step * chore: add install command
10 lines
399 B
C#
10 lines
399 B
C#
global using NUnit.Framework;
|
|
global using Microsoft.AspNetCore.Mvc.Testing;
|
|
global using Microsoft.Extensions.Hosting;
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.Playwright.NUnit;
|
|
global using Microsoft.Playwright;
|
|
global using FluentAssertions;
|
|
global using Microsoft.AspNetCore.Hosting.Server;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using System.Net; |