Gleb Bahmutov
Gleb Bahmutov
Hmm, the current repo shows local install of multi-reporters with Cypress v1.0.2 and it is running fine. Can you try same case that fails for you with Cypress v1.0.2 following...
Hi! `snap-shot` could not find the right `test(...)` wrapper here and just found the found *wrapping* the `snapshot` call. In this case it was an arrow function ``` (newState) =>...
speaking of "describer", it seems I do not discard the stack entries for it ``` snap-shot 33 callsite(s) +0ms snap-shot snap-shot file: /Users/gleb/git/snap-shot-jest-test/node_modules/sazerac/lib/describer.js snap-shot line: 64, snap-shot column: 3 snap-shot...
yeah, all good test cases that I need to handle properly, especially the parsing. How did you get the stack trace? I want to open the issue in https://github.com/bahmutov/stack-sites
A couple of reasons (and I have seen the jest-snapshot and the discussion in Ava's case https://github.com/facebook/jest/issues/2497) - just because I could - the initial focus was really on doing...
all for it, will do!
The code that gets the call site is in https://github.com/bahmutov/snap-shot/blob/57eb06e3b971c155a45e5b688bf7455bd5acea52/src/index.js#L37 ```js function snapshot (what, update) { const sites = stackSites() if (sites.length < 3) { // hmm, maybe there is...
I feel like this is extra feature that would be complicated but you can do it yourself using snap-shot-core module! Sent from my iPhone > On Feb 22, 2017, at...
Need to make sure it can discover the desired function to handle multiple values ```js it('compares multiple upper case values', () => { upValue('foo') upValue('bar') upValue('baz') }) ``` Currently is...
Needs to write JSON file because local storage is blown away.