Skip to content

Commit eb1fa2e

Browse files
author
Kelly Selden
committed
fix options assertion
1 parent bc6758a commit eb1fa2e

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

test/unit/get-start-and-end-commands-test.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ describe(_getStartAndEndCommands, function() {
123123
describe('custom blueprint', function() {
124124
it('returns an options object', async function() {
125125
let options = getStartAndEndCommands({
126-
projectOptions: ['blueprint']
126+
projectOptions: ['blueprint'],
127+
startBlueprint: { name: blueprint },
128+
endBlueprint: { name: blueprint }
127129
});
128130

129131
expect(options.createProjectFromRemote).to.be.a('function');
@@ -135,11 +137,11 @@ describe(_getStartAndEndCommands, function() {
135137
projectOptions: ['blueprint'],
136138
startOptions: {
137139
packageVersion: startVersion,
138-
blueprint: { name: 'ember-cli' }
140+
blueprint: { name: blueprint }
139141
},
140142
endOptions: {
141143
packageVersion: endVersion,
142-
blueprint: { name: 'ember-cli' }
144+
blueprint: { name: blueprint }
143145
}
144146
});
145147
});

0 commit comments

Comments
 (0)