-
Updated
May 3, 2021 - JavaScript
unit-testing
Here are 3,330 public repositories matching this topic...
-
Updated
May 3, 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
May 3, 2021 - Python
-
Updated
May 3, 2021 - Go
-
Updated
May 3, 2021 - Python
-
Updated
Mar 18, 2021 - CMake
-
Updated
Apr 26, 2021 - PHP
-
Updated
Apr 28, 2021 - JavaScript
-
Updated
Apr 22, 2021 - C++
The MSBuildSettings
extension UseToolVersion
expects a valid value from the MSBuildToolVersion enumeration.
public static MSBuildSettings UseToolVersion(this MSBuildSettings settings, MSBuil
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
Mar 31, 2020 - JavaScript
-
Updated
Oct 27, 2018 - Go
-
Updated
May 3, 2021 - Java
-
Updated
May 2, 2021 - C#
-
Updated
May 3, 2021 - TypeScript
-
Updated
May 3, 2021 - JavaScript
-
Updated
Feb 15, 2021 - C#
-
Updated
Apr 29, 2021 - Go
-
Updated
Mar 30, 2021 - JavaScript
We should have more tests for the column profiling functionality.
-
Updated
Apr 16, 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
At the moment we can access all suite methods via suite.get(). Alternatively, it would be very simple to add all the suite methods directly on top of suite:
Functions should be added here: https://github.com/ealush/vest/blob/latest/packages/vest/src/core/suite/createSuite.js#L60
They can all rely internally on suite.get()
.
Types should be added here: https://github.com/ealush/vest/blob/la
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