Node.js test runner that lets you develop with confidence
-
Updated
Jul 19, 2021 - JavaScript
{{ message }}
Node.js test runner that lets you develop with confidence
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
The 'extend' function from 'util/core' is not handling property descriptors using accessors properly.
The issue was introduced by the following commit: sinonjs/sinon@f981192
The below test can be used to duplicate the issue. The object 'obj' has a 'pub' property that is defined using a getter and a setter. Once 'extend' is called, th
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
A faster, simpler way to drive browsers supporting the Chrome DevTools Protocol.
Useful CMake Examples
PlatformIO is a professional collaborative platform for embedded development
Full-stack testing PHP framework
Language-agnostic HTTP API Testing Tool
The fastest feature-rich C++11/14/17/20 single-header testing framework
The MSBuildSettings extension UseToolVersion expects a valid value from the MSBuildToolVersion enumeration.
public static MSBuildSettings UseToolVersion(this MSBuildSettings settings, MSBuilXunit.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.
Easy monkey-patching for node.js unit tests
A Golang tool that does static analysis, unit testing, code review and generate code quality report.
Fluent assertions for Java and Android
Is there any difference between ContainItemsAssignableTo and AllBeAssignableTo?
Spending five minutes looking at them, they seem to test the same scenario.
(With the exception, that AllBeAssignableTo has special handling for IEnumerable<Type>)
In contrast to other Contain methods, ContainItemsAssignableTo expects all elements to satisfy and not just a subset
Property based testing framework for JavaScript (like QuickCheck) written in TypeScript
Various recipes for testing common scenarios with Cypress
Write better integration tests! Dockertest helps you boot up ephermal docker images for your Go tests with minimal work.
Cross Platform C# web crawler framework built for speed and flexibility. Please star this project! +1.
Deequ is a library built on top of Apache Spark for defining "unit tests for data", which measure data quality in large datasets.
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
The modern, simple and intuitive PHP unit testing framework.
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
Justification
It's much more common to see the code below:
Public Sub Foo()
Dim i, j, k As Long
'code
End Subthan it is to see:
Public Sub Foo()
Dim i As Long, j As Long, k As Long
'code
End SubThis is a very common pitfall. Example code in a MultipleDeclarations inspect
Add a description, image, and links to the unit-testing topic page so that developers can more easily learn about it.
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