mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-30 02:59:46 -06:00
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
const _snapshot = require('snap-shot-it')
|
|
const mockfs = require('mock-fs')
|
|
|
|
const snapshot = (...args) => {
|
|
mockfs.restore()
|
|
_snapshot(...args)
|
|
}
|
|
|
|
module.exports = snapshot
|