Projekt

Obecné

Profil

Stáhnout (370 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
var test = require('tape');
4
5
var ES = require('../');
6
var ES7 = ES.ES7;
7
var ES2016 = ES.ES2016;
8
var ES7entry = require('../es7');
9
10
test('legacy es7 export', function (t) {
11
	t.equal(ES7, ES2016, 'main ES7 === main ES2016');
12
	t.end();
13
});
14
15
test('legacy es7 entry point', function (t) {
16
	t.equal(ES7, ES7entry, 'main ES7 === ES7 entry point');
17
	t.end();
18
});