i need to cover my code with some unit tests and in one of then i have the following situation. app.tsx async someMethod( . . . windo
I'm trying to test my backend's methods (to check users quota, like if they can use the app) and I have some trouble with a specific one. Indeed I have a functi
I remake browser version of TacticToy game with React, and during unit-tests writing I've got a problem: there is no full traceback of a custom exception, only
I need to test a function that write a file from local path to remote path on an sftp machine using shh2-sftp-client library. my own function is the following:
I have a set of tests for the functions in an ES6 class that use $.get(). I was able to mock $.get(). I'm working on testing another function in the same class
Login.js import {useSelector, useDispatch } from 'react-redux'; import Header from './Header'; import {submitForm, handleChange} from '../actions/authenticati
We are using jest 27 for our project in Angular 12 for running our unit tests. Locally, these tests run correctly but runnig them in a cloud agent pipe they bre
//write the test case got this error when i am using shallow its working fine but not gent expect value do you have any solutin please help to me import React f
Registration on the site consists of three stages. The first step is to provide a name, email address. When you submit the form of the first step, you are redir
I have two suites of tests, one for Accounts and one for Transactions, accounts.spec.js and transactions.spec.js. I'm also using supertest. When I run them in j
Here's the current state of my setup and tear down methods: beforeAll(async () => { // await populate(); try { await client.connect(() =>
I'm currently having an issue with Jest and Typescript inside a Lerna mono repo. Inside the test file, I've imported the component import { Doctor } from '../sr
The tests in my Nx Angular 10 repo have been running very slow so I decided to switch from using jest-ts to @swc/jest. jest.presets.ts const nxPreset = require(
I have tests from an angular 12 project that work just fine. I've upgraded the project to angular 13 and now they don't work. This is my test file: import { Com
I want to use Import/export feature of ES6 modules (since my entire project uses that) with Jest 26.1.0. I have created a directory for my test cases called tes
I have this logic for temporarily reading and displaying a profile image: setTempProfileImage(file) { if (file) { let reader = new FileReader()
I just downloaded Create-React-App which uses react testing library. I do not get intellisense when I use it's methods (Example : toBeInTheDocument) . How to se
import { SecureRoute, Security, LoginCallback } from '@okta/okta-react'; import React, { useMemo } from 'react'; import { Route, Switch } from 'react-router-dom
I'm trying to integrate some e2e tests into my react native (expo ejected) mobile project. I'm following the instructions found on the detox Getting Started pag
I have a test suite/file that I have disabled. It has an associated snapshot file. For my particular situation I do not want to delete or update the snapshot fi