jshmrtn/generator-jm-vuejs

View on GitHub
generators/app/templates/test/setup.visual.js

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env node

const {
  configureToMatchImageSnapshot
} = require('jest-image-snapshot');

const toMatchImageSnapshot = configureToMatchImageSnapshot({
  customSnapshotsDir: './__snapshots__/__image_snapshots__',
  failureThreshold: '0.01',
  failureThresholdType: 'percent',
});

expect.extend({
  toMatchImageSnapshot
});