Jonathan Felchlin
Jonathan Felchlin
With the current output, the list of files can be a little difficult to spot. This change adds an extra line break and indents the list by two spaces to...
I just setup jest-enzyme in a package running jest 26 and ended up with a bunch of jest 24 packages. I'm now getting typescript errors for `jest` being undefined, which...
This PR is a follow-on to https://github.com/FormidableLabs/enzyme-matchers/pull/336, until it is merged, this PR will also include changes from that PR. This change adds three new matchers, similar to the existing...
At some point in Enzyme v2 a change was made to `wrapper.find` to return matches for both host (aka DOM) nodes as well as custom components. Take for example this...
Given the following config: ```json "css-modules-transform", { "generateScopedName": "[name]__[local]___[hash:base64:5]", "extractCss": "./dist/styles.css", } ``` And the following css: ```css /* src/components/SpecialButton.css */ .button___3y7di { background-image: url('./buttonBackground.png'); } ``` I would expect...
Fixes #73 This PR adds a new option `maxRetries` which defaults to 0. When a value greater than 0 is passed, the plugin will retry failed uploads, up to the...
Here's a simple reproduction of this Issue: ``` javascript const iniParser = require('ini'); console.log(iniParser.parse('values=["foo; bar"]')); ``` ### Actual result: Semicolon's in a quoted string in a list are parsed as...
It would be useful to have the ability to define the "shape" of an array prop. This could fairly easily be done by refactoring `PropTypes.shape` to take a `shapeTypes` argument...
It currently takes two statements to include and spread a fragment. ### Current syntax ```js const personFragment = gql` fragment Person_person on Person { firstName lastName email } `; const...
My Karma config plugins look like this: ``` plugins: [ 'karma-webpack', 'karma-jasmine', 'karma-mocha-reporter', 'karma-chrome-launcher', 'karma-firefox-launcher', 'karma-detect-browsers', 'karma-sourcemap-loader', ] ``` On a Mac, when Safari is detected, karma fails with the...