You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
309 B
14 lines
309 B
'use strict';
|
|
|
|
var ES = require('../').ES5;
|
|
var boundES = require('./helpers/createBoundESNamespace')(ES);
|
|
|
|
var ops = require('../operations/es5');
|
|
|
|
var expectedMissing = [
|
|
'SplitMatch'
|
|
];
|
|
|
|
require('./tests').es5(boundES, ops, expectedMissing);
|
|
|
|
require('./helpers/runManifestTest')(require('tape'), ES, 5);
|