We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NativeScript
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 128581e commit e2ca7cfCopy full SHA for e2ca7cf
lib/utils.ts
@@ -258,7 +258,7 @@ export function getStorageByPlatform(args: INsCapabilities) {
258
259
function getStorage(args: INsCapabilities) {
260
let storage = args.storage;
261
- if (!storage) {
+ if (!storage || storage === 'undefined' || storage === null || storage === 'null') {
262
storage = createStorageFolder(resolve(args.projectDir, args.testFolder), "resources");
263
storage = createStorageFolder(storage, "images");
264
}
0 commit comments