gurezo / cucumber-feature-step-select

this is cucumber sample that feature files step select
0 stars 0 forks source link

IE11 path get trouble #6

Closed gurezo closed 6 years ago

gurezo commented 6 years ago

e2e テストをIE11で行う時、パス取得出来ないトラブル 正確には、パスを取得できるが、編集をかけようとすると謎の挙動をする

コード
console.log(‘pwd check’);
console.log(`${pwd}`);
const csvPath = `\\downloads\\sample\\sample.csv`;
console.log(‘csvPath’);
console.log(`${pwd} and ${csvPath}`);

実行結果
pwd check
C:\work\sampleReop
csvPath
and \downloads\sample\sample.csv

`${pwd}` が何故か消える謎

期待する挙動
C:\work\sampleReop and \downloads\sample\sample.csv
C:\work\sampleReop\downloads\sample\sample.csv
gurezo commented 6 years ago

動作がポインタ的?な動作・・・・

コード
console.log(`${pwd}`);
console.log(`${pwd}\test`);

実行結果
pwd check
C:\work\sampleReop
\testrk\sampleReop <== `\test` 分だけ上書きされてる動作。。。。
gurezo commented 6 years ago

https://qiita.com/kura07/items/c9fa858870ad56dfec12 http://piyopiyocs.blog115.fc2.com/blog-entry-933.html https://qiita.com/Im0_3/items/c240a17299eb72aefcd3 http://ichiroku11.hatenablog.jp/entry/2017/03/23/224924

gurezo commented 6 years ago

IE11未サポート情報 Template literals https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

gurezo commented 6 years ago

solution jsonにパス情報を保持、jsで取得する