Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"fsdocs-tool": {
"version": "20.0.1",
"version": "19.1.1",
"commands": [
"fsdocs"
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img align="right" width="100" style="margin-left:20px" src="https://raw.githubusercontent.com/fsprojects/fsunit/master/docs/img/logo.png">

[![Build Status](https://img.shields.io/github/actions/workflow/status/fsprojects/FsUnit/main.yml?branch=master&logo=github&labelColor=4A4A4A&label=Build%20and%20Test)](https://github.com/fsprojects/FsUnit/actions?query=branch%3Amaster)
[![NuGet Status](https://buildstats.info/nuget/FsUnit)](https://www.nuget.org/packages/FsUnit/)
[![NuGet Status](https://img.shields.io/nuget/v/FsUnit)](https://www.nuget.org/packages/FsUnit/)

**FsUnit** is a set of libraries that makes unit-testing with F# more enjoyable. It adds a special syntax to your favorite .NET testing framework.
FsUnit currently supports NUnit, xUnit, and MsTest.
Expand Down
8 changes: 4 additions & 4 deletions docs/index.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ FsUnit currently supports NUnit, xUnit, and MsTest.

The goals of FsUnit are:

* to make unit-testing feel more at home in F# , i.e., more functional.
* to make unit-testing feel more at home in F#, i.e., more functional.
* to leverage existing test frameworks while at the same time adapting them to the F# language in new ways.

NuGet packages are available for each of the supported testing frameworks:

* [![NuGet Status](https://buildstats.info/nuget/FsUnit) - NUnit](https://www.nuget.org/packages/FsUnit/)
* [![NuGet Status](https://buildstats.info/nuget/FsUnit.Xunit) - xUnit](https://www.nuget.org/packages/FsUnit.Xunit/)
* [![NuGet Status](https://buildstats.info/nuget/Fs30Unit.MsTest) - MsTest](https://www.nuget.org/packages/Fs30Unit.MsTest/)
* [![NuGet Status](https://img.shields.io/nuget/v/FsUnit) - NUnit](https://www.nuget.org/packages/FsUnit/)
* [![NuGet Status](https://img.shields.io/nuget/v/FsUnit.Xunit) - xUnit](https://www.nuget.org/packages/FsUnit.Xunit/)
* [![NuGet Status](https://img.shields.io/nuget/v/Fs30Unit.MsTest) - MsTest](https://www.nuget.org/packages/Fs30Unit.MsTest/)


Syntax
Expand Down