* Add a snapshot to the update queue. * * Tracks the order in which snapshots were created so that they can be written to * the snapshot file in the correct order. * * Should be called with each snapshot, regardless of the mode, as a future call to * `assertSnapshot` could cause up
(snapshotName: string)
| 533 | * `update` mode is passed in the options. |
| 534 | */ |
| 535 | pushSnapshotToUpdateQueue(snapshotName: string) { |
| 536 | this.snapshotUpdateQueue.push(snapshotName); |
| 537 | } |
| 538 | |
| 539 | /** |
| 540 | * Check if exist snapshot |