我正在使用https://github.com/millermedeiros/requirejs-plugins中的异步插件来加载 Google Maps API:
define(['async!//maps.google.com/maps/api/js?libraries=places&sensor=false'], function () {
// ...
});
这会导致在运行单元测试时需要 Internet 连接。有没有办法模拟或以其他方式允许加载此代码的代码脱机运行而不会引发“加载资源失败”错误?