Fix CI for older environments
This commit is contained in:
parent
1f1ffedaf4
commit
c2146ce165
|
@ -93,7 +93,7 @@ export default Object.assign([
|
||||||
{
|
{
|
||||||
input: 'test/unittests.js',
|
input: 'test/unittests.js',
|
||||||
output: [
|
output: [
|
||||||
{ file: 'test/lib/unittests-bundle.js', format: 'es', sourcemap: true },
|
{ file: 'test/lib/unittests-bundle.js', format: 'es', intro, sourcemap: true },
|
||||||
],
|
],
|
||||||
inlineDynamicImports: true,
|
inlineDynamicImports: true,
|
||||||
plugins: [
|
plugins: [
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
(typeof window !== 'undefined' ? window : global).globalThis = (typeof window !== 'undefined' ? window : global);
|
||||||
|
|
||||||
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
|
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
|
||||||
return new Promise(function(res) { res(val); });
|
return new Promise(function(res) { res(val); });
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user