mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 20:30:04 +02:00
12 lines
535 B
JavaScript
12 lines
535 B
JavaScript
'use strict';
|
|
|
|
var ES = require('../').ES2015;
|
|
|
|
var ops = require('../operations/2015');
|
|
|
|
// jscs:disable
|
|
var expectedMissing = ['CreateMethodProperty', 'DefinePropertyOrThrow', 'DeletePropertyOrThrow', 'Construct', 'SetIntegrityLevel', 'TestIntegrityLevel', 'CreateArrayFromList', 'CreateListFromArrayLike', 'OrdinaryHasInstance', 'EnumerableOwnNames', 'CreateListIterator', 'thisNumberValue', 'thisTimeValue', 'thisStringValue', 'RegExpBuiltinExec', 'IsPromise'];
|
|
// jscs:enable
|
|
|
|
require('./tests').es2015(ES, ops, expectedMissing);
|