-
Updated
Jun 22, 2021 - JavaScript
unit-testing
Here are 3,462 public repositories matching this topic...
-
Updated
Jun 16, 2021 - JavaScript
Is your feature request related to a problem? Please describe.
Today we silently ignore stubbing issues, such as trying to use sinon.stub(obj, 'prop')
, when obj.prop
is a synthetic getter. From a user perspective, it is probably more user friendly to be explicitly told immediately that this Object.descriptor is non-configurable (perhaps even with a link to a Sinon doc page!) and cannot be
-
Updated
Jun 24, 2021 - Python
-
Updated
Jun 17, 2021 - Go
-
Updated
Mar 18, 2021 - CMake
-
Updated
Jun 24, 2021 - Python
-
Updated
Jun 20, 2021 - PHP
-
Updated
Jun 19, 2021 - JavaScript
-
Updated
Jun 24, 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
Jun 11, 2021 - JavaScript
-
Updated
Oct 27, 2018 - Go
-
Updated
Jun 21, 2021 - Java
-
Updated
Jun 24, 2021 - C#
-
Updated
Jun 24, 2021 - TypeScript
-
Updated
Jun 24, 2021 - JavaScript
-
Updated
Jun 18, 2021 - Go
-
Updated
Feb 15, 2021 - C#
-
Updated
Jun 16, 2021 - Scala
-
Updated
May 26, 2021 - JavaScript
-
Updated
Jun 11, 2021 - Swift
-
Updated
Jul 23, 2020
-
Updated
Jan 14, 2021 - PHP
Hi,
The current version of OCMock used by Cuckoo/OCMock is very old (version 3.4.3), and has issues on Apple Silicon and Xcode 11 (among other things).
It would be great if Cuckoo's version of OCMock could be upgraded to >= 3.8.1 which works on Apple Silicon (release notes: https://ocmock.org/download/).
//Erik
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
-
Updated
May 28, 2021 - JavaScript
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