Skip to content

Commit

Permalink
test(App Download Test): Maybe fixed Path to downloaded file
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht committed Aug 1, 2018
1 parent 8ff3e98 commit 2c6b69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('workspace-project App', () => {
it('should download the vCard File', () => {
const path = require('path');
const downloadsPath = path.resolve(__dirname, './');
const absFilePath = (downloadsPath as string).slice(0, -3) + 'downloads\\John Doe.vcf';
const absFilePath = (downloadsPath as string).slice(0, -3) + 'downloads/John Doe.vcf';
const fs = require('fs');

if (fs.existsSync(absFilePath)) {
Expand Down

0 comments on commit 2c6b69c

Please sign in to comment.