UNPKG

236 BJavaScriptView Raw
1import src from '../src';
2import cjs from '../src/cjs';
3
4describe('cjs', () => {
5 it('should exported', () => {
6 expect(cjs).toEqual(src);
7 });
8
9 it('should export "raw" flag', () => {
10 expect(cjs.raw).toEqual(true);
11 });
12});