From 068cce61e637a7586184ef564b53a688ccde7098 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 31 May 2018 14:09:41 -0700 Subject: [PATCH] Fix path-oriented unit test on Windows --- test/app/attachments_test.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/app/attachments_test.js b/test/app/attachments_test.js index 70932750f..4b4c0c966 100644 --- a/test/app/attachments_test.js +++ b/test/app/attachments_test.js @@ -217,17 +217,22 @@ describe('Attachments', () => { }); describe('createAbsolutePathGetter', () => { + const isWindows = process.platform === 'win32'; + it('combines root and relative path', () => { - const root = '/tmp'; + const root = isWindows ? 'C:\\temp' : '/tmp'; const relative = 'ab/abcdef'; const pathGetter = Attachments.createAbsolutePathGetter(root); const absolutePath = pathGetter(relative); - assert.strictEqual(absolutePath, '/tmp/ab/abcdef'); + assert.strictEqual( + absolutePath, + isWindows ? 'C:\\temp\\ab\\abcdef' : '/tmp/ab/abcdef' + ); }); it('throws if relative path goes higher than root', () => { - const root = '/tmp'; + const root = isWindows ? 'C:\\temp' : 'tmp'; const relative = '../../ab/abcdef'; const pathGetter = Attachments.createAbsolutePathGetter(root);