Skip to content

Commit

Permalink
fix(lib/test): Set tmp dir name for BlueprintAcceptanceTest class
Browse files Browse the repository at this point in the history
A work around for denali-js#60
  • Loading branch information
knownasilya committed Apr 18, 2018
1 parent c507227 commit 6e9c8a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/test/blueprint-acceptance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ export default class BlueprintAcceptanceTest extends CommandAcceptanceTest {
blueprintName: string;

constructor(blueprintName: string) {
super('');
super('', {
name: `blueprint-${ blueprintName }`
});
this.blueprintName = blueprintName;
}

Expand Down

0 comments on commit 6e9c8a1

Please sign in to comment.