mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
import { use } from 'chai';
|
|
import chaiJestSnapshot from 'chai-jest-snapshot';
|
|
|
|
use(chaiJestSnapshot);
|
|
|
|
before(function () {
|
|
chaiJestSnapshot.resetSnapshotRegistry();
|
|
});
|
|
|
|
beforeEach(function () {
|
|
chaiJestSnapshot.configureUsingMochaContext(this);
|
|
});
|