mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge pull request #12257 from harryadel/underscore/ecmascript
[ecmascript] Remove underscore
This commit is contained in:
@@ -31,7 +31,7 @@ Package.onUse(function(api) {
|
||||
});
|
||||
|
||||
Package.onTest(function(api) {
|
||||
api.use(['tinytest', 'underscore']);
|
||||
api.use(['tinytest']);
|
||||
api.use(['es5-shim', 'ecmascript', 'babel-compiler']);
|
||||
api.addFiles('runtime-tests.js');
|
||||
api.addFiles('transpilation-tests.js', 'server');
|
||||
|
||||
@@ -216,7 +216,7 @@ Tinytest.add('ecmascript - runtime - block scope', test => {
|
||||
});
|
||||
}
|
||||
|
||||
_.each(thunks, f => f());
|
||||
thunks.forEach(f => f());
|
||||
test.equal(buf, [0, 1, 2]);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user