-
Updated
Apr 6, 2021 - JavaScript
unit-testing
Here are 3,283 public repositories matching this topic...
-
Updated
Apr 7, 2021 - JavaScript
Is your feature request related to a problem? Please describe.
If you want to use sinon with mocha, you shouldn't forget to restore the sinon sandbox after each test. This is documented here in general setup.
Since version 7.2, mocha supports root hooks. It is a way to export mocha root hooks (beforeEach, afterEach etc) fr
-
Updated
Apr 15, 2021 - Python
-
Updated
Apr 6, 2021 - Go
-
Updated
Apr 12, 2021 - Python
-
Updated
Mar 18, 2021 - CMake
-
Updated
Apr 13, 2021 - PHP
-
Updated
Apr 13, 2021 - JavaScript
-
Updated
Apr 14, 2021 - C++
The example in the documentation ( https://cakebuild.net/api/Cake.Common.Tools.GitVersion/GitVersionAliases/ ) uses GitVersion.CommandLine which is a Windows-only tool.
GitVersion.Tool is a cross-platform .NET tool that can be consumed via the dotnet scheme in Cake >= 1.1
#tool "dotnet:?package=GitVersion.Tool&version=5.6.6"
-
Updated
Mar 31, 2020 - JavaScript
Xunit.Sdk.TraitHelper.GetTraits creates a new instance of Xunit.Sdk.NullMessageSink, a type that does not override Equals. That instance is later used as a part of the key for caching instance inside Xunit.Sdk.ExtensibilityPointFactory, resulting in caching not working for such calls at all.
-
Updated
Oct 27, 2018 - Go
-
Updated
Apr 14, 2021 - Java
-
Updated
Apr 12, 2021 - C#
-
Updated
Apr 15, 2021 - TypeScript
-
Updated
Apr 13, 2021 - JavaScript
-
Updated
Feb 15, 2021 - C#
-
Updated
Apr 4, 2021 - Go
-
Updated
Mar 30, 2021 - JavaScript
We should have more tests for the column profiling functionality.
-
Updated
Feb 23, 2021 - Swift
-
Updated
Jan 14, 2021 - PHP
-
Updated
Jul 23, 2020
-
Updated
Mar 7, 2021 - JavaScript
Today, my project's build failed in CI because of a problem downloading the cuckoo_generator executable in the run script. I'm not sure what the actual issue was (there was an issue extracting the URL from the GH API response), but it started working again by itself sometime later, so I'm assuming that it was a GH blip.
I find it a little strange that the SPM installation for Cuckoo depends
Justification
When first loading RD CodeExplorer displays all nodes as expanded to show contents. If you have other projects (Personal Macro Workbook (PMW), Excel add ins (*.xlam), etc...) they can obscure the project you want to work on.
Description
Add ability to expand/collapse all project nodes to quickly find project you wish to work with.
Where to get started
TestExplore
Improve this page
Add a description, image, and links to the unit-testing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the unit-testing topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a problem? Please describe.
Doc string states:
Date().weekday -> 5 // fifth day in the current week.
Guess what, 5 is not friday. It's thursday. It makes some sense after i dug deeper, but as a programmer, i assumed monday could be 0 or 1, therefore thursday should be 3 or 4. Monday is 2! Because sunday is 1!
**Describe the solution you'd li