Open thomaspink opened 7 years ago
Suppressing for now in rollup config:
onwarn: function (message) {
// Suppress this error message... there are hundreds of them. Angular team says to ignore it.
// https://github.com/rollup/rollup/wiki/Troubleshooting#this-is-undefined
if (/The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten./.test(message)) {
return;
}
console.error(message);
}
Getting the following warnings when running tests. Any ideas how to remove them?
Also: