From a53398daf75433d24d3ada696bdd43b1d2102a88 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Tue, 16 Apr 2019 16:00:31 -0400 Subject: [PATCH] Allow file references by basename or short path --- spec/main-process/atom-application.new.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/main-process/atom-application.new.test.js b/spec/main-process/atom-application.new.test.js index bb7d0eee5..e11c62e3b 100644 --- a/spec/main-process/atom-application.new.test.js +++ b/spec/main-process/atom-application.new.test.js @@ -141,6 +141,7 @@ class LaunchScenario { reject(err) } else { this.filePathPool.set(filePath, fullFilePath) + this.filePathPool.set(path.basename(filePath), fullFilePath) resolve() } })