Fix CI for older environments

This commit is contained in:
Daniel Huigens 2020-12-07 21:02:18 +01:00
parent 1f1ffedaf4
commit c2146ce165
2 changed files with 3 additions and 1 deletions

View File

@ -93,7 +93,7 @@ export default Object.assign([
{
input: 'test/unittests.js',
output: [
{ file: 'test/lib/unittests-bundle.js', format: 'es', sourcemap: true },
{ file: 'test/lib/unittests-bundle.js', format: 'es', intro, sourcemap: true },
],
inlineDynamicImports: true,
plugins: [

View File

@ -1,3 +1,5 @@
(typeof window !== 'undefined' ? window : global).globalThis = (typeof window !== 'undefined' ? window : global);
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
return new Promise(function(res) { res(val); });
};