Category "testing"

How do I run the tests that are part of an installed/installing Cabal package?

I have a Haskell package I've installed from Hackage, using cabal and would like to run the tests suites that are part of the package, but it isn't clear to me

TDD for an algorithm involving randomness

I would like to try out test-driven development, but the project I am working on involves a lot of randomness and I am very unsure about how I can test it. Here

How to check if an element contains multiple items in Cypress.io

How can I check if an element contains multiple items in Cypress.io without replicating my code so much? Current Example: cy.get(".column") .children() .con

How to force fail a test in Cypress.io

In Cypress.io is there a way that I can force a test to fail if a certain condition is met? For example, on my webpage, if the string "Sorry, something went wro

Cypress: how to drag an element towards another dynamic element

In cypress I'm trying to drag one element towards another element? How can I do that? It should look something like this cy.('@firstElememt').trigger('drag').to

BDD Cucumber test management tool

Is there an open source tool available to control the running of BDD cucumber tests? We are developing BDD cucumber tests and would like the option to control

Chai should be bignumber equal doesn't work

I am requireing chai like this const BigNumber = web3.BigNumber; require('chai').use(require('chai-bignumber')(BigNumber)).should(); and during test let balanc

Running a command cy.exec('npm run sfdx:latest-leads') will change the json file format

Current behavior I'm currently working on a project where I set up a command in my package.json. As soon as I run that command through a cypress file, it seems

Running a command cy.exec('npm run sfdx:latest-leads') will change the json file format

Current behavior I'm currently working on a project where I set up a command in my package.json. As soon as I run that command through a cypress file, it seems

How to send GraphQLrequest using Cypress

I wonder if there is a way to send GraphQL mutations using Cypress? There is cy.intercept() but this is more for waiting for responses.

Mocking Unirest with mockito

I am in my starting programming phase and I wanted to ask about mocking Objects with Mockito, more specifically is the Unirest response. Let's say I have a data

How to test _document in Next using Jest

I'm trying to achieve 100% coverage in a project and this is the only file I can't test because I haven't got any idea of how to do it. I don't even know where

Is it possible to mock a function imported from a package in golang?

I have the following method to test, which uses a function imported from a package. import x.y.z func abc() { ... v := z.SomeFunc() ... } Is it

How do I select the right elements with querySelectorAll as I do by using the Chrome developers console?

I'm currently using cypress to test salesforce, and I'm running into a certain circumstance where I don't know the Party record ID that will create it within th

How do I select the right elements with querySelectorAll as I do by using the Chrome developers console?

I'm currently using cypress to test salesforce, and I'm running into a certain circumstance where I don't know the Party record ID that will create it within th

Is there a way to set custom responses from an external server when a specific request receive?

I have a program that is only displaying bug behavior when a certain response is received from an external server. The only thing is, the external server is in

JavaScript test runner that supports native modules

Is there a JavaScript test runner that supports native modules?

Returning responses randomly from wiremock

I need to return a random response out of a predefined set each time the same wiremock endpoint is called. How can I do it?

What are assertions in JEST?

It's documentation says that while dealing with async code, expect.assertions(x) should be written. What exactly do assertions refer to? Is it a term of plain J

Why remove QA IDs from the code base in production

In a React application that we are developing we use QA IDs for Selenium tests. Is it bad practice to leave them in the code base in production (live)? If so,