switch to core-js from es6-symbol and es6-shim

Conflicts:
	lib/6to5/polyfill.js
This commit is contained in:
Sebastian McKenzie
2014-12-15 14:00:41 +11:00
parent 3a261a5e05
commit 363b1631f5
4 changed files with 17 additions and 40 deletions

View File

@@ -7,6 +7,8 @@ var chai = require("chai");
var util = require("../lib/6to5/util");
var _ = require("lodash");
require("../lib/6to5/polyfill");
var run = function (task, done) {
var actual = task.actual;
var expect = task.expect;
@@ -27,8 +29,6 @@ var run = function (task, done) {
result = transform(execCode, getOpts(exec));
execCode = result.code;
require("../lib/6to5/polyfill");
try {
var fn = new Function("assert", "done", "genHelpers", execCode);
fn(assert, done, genHelpers);