-
Updated
Dec 28, 2019 - JavaScript
jest-tests
Here are 498 public repositories matching this topic...
Redux module example
Include warning that this package is potentially duplicative for anyone using Jest 24 and above
It has come to our attention (through trial and error) that this package is no longer needed for users of Jest 24 or later. jest@24.x.x ultimately includes jsdom, of which a recent version added localStorage and sessionStorage support out of the box.
I think it would be worth calling this out somewhere in the docs of `jest
-
Updated
Mar 8, 2018 - CSS
Describe the solution you'd like
Implementation of the attached logout overlay message UI based on code guidlines.
This component needs to be under Layouts which is displayed in the [ignitus-UserInte
Although the two source streams and the result stream have all a length of 5, an exception is thrown.
Reproduction:
import { cold, hot } from 'jest-marbles'
import { buffer, mergeAll } from 'rxjs/operators'
describe('test', () => {
it('should not fail', () => {
const source1 = cold('AB--|')
const source2 = hot('^-A-|')
expect(source1.pipe(buffer(source2), mergeAlIs this a bug or feature request?
B
What is the current behavior?
Some vulnerable package deps
Which are the steps to reproduce?
see snapshot
What is the expected or desired behavior?
Package should be updated and no vulnerability repo
-
Updated
Jul 8, 2020 - TypeScript
with a jest.config.js containing
module.exports = {
browser: false,
clearMocks: false,
globals: {
"pageContextRequestContextPath":"./"
},
runner: "jest-electron/runner",
testEnvironment: "jest-electron/environment",
verbose: true,
};
When doing console.log("test"); in my tests it doesn't print anything in the console.
When I switch to runner: "jest-runner",
and
-
Updated
Oct 29, 2019 - JavaScript
-
Updated
Mar 14, 2020 - TypeScript
Need of Enzyme
-
Updated
Mar 19, 2019 - JavaScript
OpenAPI version
3
Describe the bug
I have a spec that works if I pull it down, write it to a file and then pass that file path into chaiResponseValidator(specPath).
After pulling down 0.7.0 - I was expecting that the feature in 0.6.0 to just do an HTTP get and pass the data portion of the response in would work.
However, it appears that the code is inspecting the input and looking
-
Updated
Apr 24, 2020 - TypeScript
When attempting to override a global specified in the jest.config.js we've found it isn't overriden.
We have a set of globals which are basically stubs (in jest.config.js) e.g.
module.exports = {
globals: {
YJ: {
i18n: {
react: {}
}
}
},
...
Then when using jest-wrap to override the i18n key in that glob
-
Updated
Jun 12, 2020 - JavaScript
-
Updated
Mar 13, 2017 - JavaScript
-
Updated
Jul 14, 2020 - JavaScript
-
Updated
Jun 26, 2020 - TypeScript
-
Updated
Apr 3, 2018 - JavaScript
Update dependencies
Currently new Babel supports typescript. Use it.
Also update security and deprecation varnings.
- Use babel
- Update dependencies
- Fix security issues
- Fix CI
-
Updated
Jul 15, 2018 - TypeScript
-
Updated
May 25, 2020 - JavaScript
-
Updated
May 12, 2020 - TypeScript
In the regular jest .toEqual(), you see the line in the JSON that is off with all the surrounding JSON lines. In this package's .toBeDeepCloseTo() you only see the line in the JSON that doesn't match - with no context of where in the JSON it appears - not even the key.
-
Updated
Sep 14, 2018 - JavaScript
-
Updated
Jul 6, 2020 - JavaScript
Improve this page
Add a description, image, and links to the jest-tests topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jest-tests topic, visit your repo's landing page and select "manage topics."




Someone has an example of redux modules in this template? Because I do not really understand how to connect more than 1 module in the component.