yuku-t/textcomplete.codemirror

View on GitHub
test/test_helper.js

Summary

Maintainability
A
0 mins
Test Coverage
const sinon = require('sinon');

beforeEach(function () {
  this.sinon = sinon.sandbox.create();
});

afterEach(function () {
  this.sinon.restore();
});