tomchentw/medium-editor-tc-mention

View on GitHub
src/__tests__/index.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable prefer-arrow-callback */

import {
  default as expect,
} from "expect";

import * as Module from "../index";

describe(`index`, function describeIndex() {
  it(`should be exported`, function it() {
    expect(Module.default).toExist();
    expect(Module.TCMention).toExist();
  });
});