10 lines
294 B
JavaScript
10 lines
294 B
JavaScript
'use strict';
|
|
|
|
var ES = require('../').ES2015;
|
|
|
|
var ops = require('../operations/2015');
|
|
|
|
var expectedMissing = ['Construct', 'CreateArrayFromList', 'CreateListFromArrayLike', 'CreateListIterator', 'NormalCompletion', 'RegExpBuiltinExec'];
|
|
|
|
require('./tests').es2015(ES, ops, expectedMissing);
|