astro/packages/integrations/vercel/test/setup.js
2023-07-12 08:06:08 +01:00

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);
});