From 37d8ad360a1aa9479e0c9188fdcdf322ac228a49 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 9 Jul 2018 20:24:07 +0300 Subject: [PATCH] update test so it plays nice with windows --- test/template.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/template.js b/test/template.js index 3e5e252d1..dcbe9b23c 100644 --- a/test/template.js +++ b/test/template.js @@ -15,37 +15,37 @@ describe('TemplateGenerator', function () { it('return correct zip filename for https link', function () { let result = templateGenerator.getExternalProject("https://github.com/embark-framework/embark"); assert.strictEqual(result.url, "https://github.com/embark-framework/embark/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark/archive.zip"); }); it('return correct zip filename for http link', function () { let result = templateGenerator.getExternalProject("http://github.com/embark-framework/embark"); assert.strictEqual(result.url, "http://github.com/embark-framework/embark/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark/archive.zip"); }); it('return correct zip filename without protocol specified ', function () { let result = templateGenerator.getExternalProject("github.com/embark-framework/embark"); assert.strictEqual(result.url, "https://github.com/embark-framework/embark/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark/archive.zip"); }); it('return correct zip filename without protocol specified ', function () { let result = templateGenerator.getExternalProject("github.com/embark-framework/embark"); assert.strictEqual(result.url, "https://github.com/embark-framework/embark/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark/archive.zip"); }); it('return correct zip filename with just username/repo specified', function () { let result = templateGenerator.getExternalProject("embark-framework/embark"); assert.strictEqual(result.url, "https://github.com/embark-framework/embark/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark/archive.zip"); }); it('return correct zip filename with just embark template specified', function () { let result = templateGenerator.getExternalProject("react"); assert.strictEqual(result.url, "https://github.com/embark-framework/embark-react-template/archive/master.zip"); - assert.strictEqual(result.filePath, ".embark/templates/embark-framework/embark-react-template/archive.zip"); + assert.strictEqual(result.filePath.replace(/\\/g,'/'), ".embark/templates/embark-framework/embark-react-template/archive.zip"); }); });