How to use destinationPath method in storybook-root

Best JavaScript code snippet using storybook-root

index.js

Source:index.js Github

copy

Full Screen

...97 if (this.options.contractType === 'default') {98 if (this.options.language.endsWith('script') ){99 this.fs.copyTpl(this.templatePath(`v2/default/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});100 if (this.options.language === 'javascript') {101 this._rename(this.destinationPath('lib/my-contract.js'), this.destinationPath(`lib/${this.options.assetDashSeparator}-contract.js`));102 this._rename(this.destinationPath('test/my-contract.js'), this.destinationPath(`test/${this.options.assetDashSeparator}-contract.js`));103 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));104 }105 if (this.options.language === 'typescript') {106 this._rename(this.destinationPath('src/my-asset.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}.ts`));107 this._rename(this.destinationPath('src/my-contract.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}-contract.ts`));108 this._rename(this.destinationPath('src/my-contract.spec.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}-contract.spec.ts`));109 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));110 }111 // npm install does dumb stuff and renames our gitignore to npmignore, so rename it back!112 this._rename(this.destinationPath('.gitignore-hidefromnpm'), this.destinationPath('.gitignore'));113 this._rename(this.destinationPath('.npmignore-hidefromnpm'), this.destinationPath('.npmignore'));114 } else if (this.options.language === 'java'){115 this.fs.copyTpl(this.templatePath(`v2/default/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});116 this._rename(this.destinationPath('.gitignore-hidefromnpm'), this.destinationPath('.gitignore'));117 let root = 'src/main/java/org/example';118 this._rename(this.destinationPath(`${root}/MyAsset.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}.java`));119 this._rename(this.destinationPath(`${root}/MyContract.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}Contract.java`));120 root = 'src/test/java/org/example';121 this._rename(this.destinationPath(`${root}/MyContractTest.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}ContractTest.java`));122 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));123 } else if (this.options.language === 'kotlin'){124 this.fs.copyTpl(this.templatePath(`v2/default/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});125 this._rename(this.destinationPath('.gitignore-hidefromnpm'), this.destinationPath('.gitignore'));126 let root = 'src/main/kotlin/org/example';127 this._rename(this.destinationPath(`${root}/MyAsset.kt`), this.destinationPath(`${root}/${this.options.assetPascalCase}.kt`));128 this._rename(this.destinationPath(`${root}/MyContract.kt`), this.destinationPath(`${root}/${this.options.assetPascalCase}Contract.kt`));129 root = 'src/test/kotlin/org/example';130 this._rename(this.destinationPath(`${root}/MyContractTest.kt`), this.destinationPath(`${root}/${this.options.assetPascalCase}ContractTest.kt`));131 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));132 } else if (this.options.language === 'go') {133 this.fs.copyTpl(this.templatePath(`v2/default/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});134 this._rename(this.destinationPath('my-contract.go'), this.destinationPath(`${this.options.assetDashSeparator}-contract.go`));135 this._rename(this.destinationPath('my-contract_test.go'), this.destinationPath(`${this.options.assetDashSeparator}-contract_test.go`));136 this._rename(this.destinationPath('my-asset.go'), this.destinationPath(`${this.options.assetDashSeparator}.go`));137 } else {138 // language not understood139 throw new Error(`Sorry the language '${this.options.language}' is not recognized`);140 }141 } else {142 if (this.options.language.endsWith('script') ){143 this.fs.copyTpl(this.templatePath(`v2/private/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});144 if (this.options.language === 'javascript') {145 this._rename(this.destinationPath('lib/my-contract.js'), this.destinationPath(`lib/${this.options.assetDashSeparator}-contract.js`));146 this._rename(this.destinationPath('test/my-contract.js'), this.destinationPath(`test/${this.options.assetDashSeparator}-contract.js`));147 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));148 }149 if (this.options.language === 'typescript') {150 this._rename(this.destinationPath('src/my-private-asset.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}.ts`));151 this._rename(this.destinationPath('src/my-contract.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}-contract.ts`));152 this._rename(this.destinationPath('src/my-contract.spec.ts'), this.destinationPath(`src/${this.options.assetDashSeparator}-contract.spec.ts`));153 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));154 }155 // npm install does dumb stuff and renames our gitignore to npmignore, so rename it back!156 this._rename(this.destinationPath('.gitignore-hidefromnpm'), this.destinationPath('.gitignore'));157 this._rename(this.destinationPath('.npmignore-hidefromnpm'), this.destinationPath('.npmignore'));158 } else if (this.options.language === 'java'){159 this.fs.copyTpl(this.templatePath(`v2/private/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});160 this._rename(this.destinationPath('.gitignore-hidefromnpm'), this.destinationPath('.gitignore'));161 let root = 'src/main/java/org/example';162 this._rename(this.destinationPath(`${root}/MyAsset.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}.java`));163 this._rename(this.destinationPath(`${root}/MyContract.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}Contract.java`));164 root = 'src/test/java/org/example';165 this._rename(this.destinationPath(`${root}/MyContractTest.java`), this.destinationPath(`${root}/${this.options.assetPascalCase}ContractTest.java`));166 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));167 } else if (this.options.language === 'go') {168 this.fs.copyTpl(this.templatePath(`v2/private/${this.options.language}`), this._getDestination(), this.options, undefined, {globOptions : {dot : true}});169 this._rename(this.destinationPath('my-contract.go'), this.destinationPath(`${this.options.assetDashSeparator}-contract.go`));170 this._rename(this.destinationPath('my-contract_test.go'), this.destinationPath(`${this.options.assetDashSeparator}-contract_test.go`));171 this._rename(this.destinationPath('my-asset.go'), this.destinationPath(`${this.options.assetDashSeparator}.go`));172 this._rename(this.destinationPath('transaction_data/my-transactions.txdata'), this.destinationPath((`transaction_data/${this.options.assetDashSeparator}-transactions.txdata`)));173 } else {174 // language not understood175 throw new Error(`Sorry the language '${this.options.language}' is not recognized`);176 }177 }178 }179 async install () {180 if (this.options.language.endsWith('script') ){181 if (this.options['skip-install'] !== true) {182 this.installDependencies({bower : false, npm : true});183 }184 } else if (this.options.language.startsWith('go')) {185 console.log('Please run \'go mod vendor\' to get the required go modules prior to installing on your peer');186 } else {...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run storybook-root automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful