-
Updated
Nov 13, 2018 - TypeScript
integration-testing
Here are 651 public repositories matching this topic...
What are you trying to achieve?
Let users know that Codeception 3 brings not only PHPUnit 8.x support, but also blazing-fast code coverage via krakjoe/pcov thanks to this bad boy sebastianbergmann/php-code-coverage#663
What do you get instead?
pcov
is not mentioned anywhere
Details
The setup is
This is more of a development problem and does not affect users as it is with dev dependencies. When cloning the repository and running yarn, yarn warns about incorrect peer dependencies:
$ git clone https://github.com/apiaryio/dredd.git dredd-clean
Cloning into 'dredd-clean'...
remote: Enumerating objects: 54, done.
remote: Counting objects: 100% (54/54), done.
remote: Compressin
🐛 Bug Report
Using jest-dev-server
, set a command like:
module.exports = {
command: 'npm run start',
launchTimeout: 1000,
}
If the timeout occurs, you get this message:
Server has taken more than 1000ms to start.
The problem here is that jest-dev-server
then never sends the proper signals to the processes started by the command
, meaning they get
I can obtain record list (in JSON) from server.
jsonTypes handler passes if record list is filled with designated items.
However jsonTypes handler seems to disallow empty record list: Expected '*' not found (path 'records.*')
repro/test.js:
const frisby = require('frisby'),
Joi = frisby.Joi;
it('should pass', (done) => {
frisby.fromJSON({ records: [] })
.inspectBody()
-
Updated
May 17, 2020 - JavaScript
Is your feature request related to a problem? Please describe.
I'm trying to get two containers to communicate with each other.
I can start up each container and connect to it from the command line using localhost and the bound IP but I'm not clear how to get two containers to talk to each other.
I think this would be the equivalent of "docker network connect" https://stackoverflow.com/qu
Our app is using wix/react-native-navigation which as per the diagram below changes the implementation of the app. Which means, wrapping the app under a single shared Tester
component doesn't work in the same way.

Add a browser detect for this scenario.
Update websocket
DoS vulnerability fixed in https://github.com/gorilla/websocket/releases/tag/v1.4.1
-
Updated
Jul 8, 2020 - Ruby
Setup steps unclear
I'm new to Docker, so forgive my ignorance, but I'm struggling to understand what these directions are telling me to do:
https://github.com/whisklabs/docker-it-scala#configuration
According to this whisklabs/docker-it-scala#7 you simply need to set that environment variable for DOCKER_HOST
and all unit tests should then run just fine, but on a fresh install of Doc
-
Updated
Jul 3, 2020 - TypeScript
Hey! I read the documentation and did not find a single example about the comparison of screenshots could not supplement the documentation and give examples
Steps:
Run standalone Greenmail server with the -Dgreenmail.auth.disabled option
send an email to the server for test@test.com //new account is created
Try to fetch emails for test@test.com from the server connecting as test@test.com with any password
Expected: The emails fetch successfully since documentation states:
Disables user authentication check, so that any password works.
``
-
Updated
Apr 13, 2020 - Java
Postman is a great tool to craft http requests and test apis.
It also has a runner (in the tool or cli (Newman)) for tests, and can export its project into json parsable files.
Can venom integrates with Postman's dump ? Either live running it, or convert
-
Updated
Jul 7, 2020 - Java
-
Updated
Jul 8, 2020 - TypeScript
-
Updated
Jan 8, 2020 - Go
The current docs on the main branch shows the following use:
var scenario = BuildScenario()
.WithConcurrentCopies(1)
.WithOutWarmUp()
.WithDuration(TimeSpan.FromSeconds(2));
var allStats = NBomberRunner.RegisterScenarios(scenario).RunTest();
var stepStats = allStats.First(x => x.StepName == "simple step");
Assert.IsTrue(stepStats.Ok
-
Updated
Jan 2, 2020 - JavaScript
-
Updated
Jun 19, 2020 - C#
-
Updated
Nov 10, 2016 - Java
Improve this page
Add a description, image, and links to the integration-testing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the integration-testing topic, visit your repo's landing page and select "manage topics."
The second example in section 1.1 says:
expect(result.approved).to.be.false;
It should be:
expect(result.approved).to.be.true;
(I'm guessing you made it false so you could simulate the error output in the next picture.)