CleanTesting icon indicating copy to clipboard operation
CleanTesting copied to clipboard

Sample code for the Clean Testing talk.

Results 21 CleanTesting issues
Sort by recently updated
recently updated
newest added

Bumps [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) from 9.0.7 to 11.0.5. Changelog Sourced from @​angular/core's changelog. 11.0.5 (2020-12-16) Bug Fixes compiler: handle strings inside bindings that contain binding characters (#39826) (f5aab2b), closes #39601 core: fix...

dependencies

Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 to 1.1.1. Changelog Sourced from eventsource's changelog. 1.1.1 Do not include authorization and cookie headers on redirect to different origin (#273 Espen Hovlandsdal) 1.1.0 Improve performance...

dependencies

Bumps [async](https://github.com/caolan/async) from 2.6.2 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) v2.6.3 Updated lodash to squelch a security warning (#1675) Commits c6bdaca Version...

dependencies

Update Testing setup (in particular the `new Startup()` command) to .NET 6 project template (with top-level class Program.cs).

Bumps [karma](https://github.com/karma-runner/karma) from 4.4.1 to 6.3.16. Release notes Sourced from karma's releases. v6.3.16 6.3.16 (2022-02-10) Bug Fixes security: mitigate the "Open Redirect Vulnerability" (ff7edbb) v6.3.15 6.3.15 (2022-02-05) Bug Fixes helper:...

dependencies

Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.4.7 to 1.5.10. Commits 8cd4c6c 1.5.10 ce7a01f [fix] Improve handling of empty port 0071490 [doc] Update JSDoc comment a7044e3 [minor] Use more descriptive variable name d547792 [security]...

dependencies

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.7.0 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...

dependencies

Bumps [node-sass](https://github.com/sass/node-sass) from 4.12.0 to 7.0.0. Release notes Sourced from node-sass's releases. v7.0.0 Breaking changes Drop support for Node 15 (@​nschonni) Set rejectUnauthorized to true by default (@​scott-ut, #3149) Features...

dependencies

Assuming I have this code: ``` public static void RunBeforeAnyTests() { IConfigurationBuilder builder = new ConfigurationBuilder() .SetBasePath(Directory.GetCurrentDirectory()) .AddJsonFile("appsettings.json", true, true) .AddEnvironmentVariables(); _configuration = builder.Build(); ConnectionString = _configuration.GetConnectionString("DefaultConnection"); ServiceCollection services =...

Hey! I'm just curious why did you decide to write your own library to integration tests instead of using WebApplicationFactory from Microsoft? Thanks in advance