Skip to content

Commit

Permalink
pull --project from unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonego committed Oct 27, 2017
1 parent 57bd2dd commit 75dd4be
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/js/runArgBuilder-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ describe('Run Argument Builder', () => {
it('should have framework if framework is passed', () => {
assert.deepEqual(builder({framework: 'yo'}), ['--framework', 'yo']);
});
it('should have project if project is passed', () => {
assert.deepEqual(builder({project: 'yo'}), ['--project', 'yo']);
});
it('should have runtime if runtime is passed', () => {
assert.deepEqual(builder({runtime: 'yo'}), ['--runtime', 'yo']);
});
Expand Down Expand Up @@ -49,4 +46,4 @@ describe('Run Argument Builder', () => {
it('should have msbuild args if msbuildargs are passed and are always last, version even...laster', () => {
assert.deepEqual(builder({msbuildArgs: ['/p:awesome=1.0.0', '/t:Build'], configuration: 'Release', version: '1.2.0'}), ['--configuration','Release','/p:awesome=1.0.0', '/t:Build', '/p:Version=1.2.0']);
});
});
});

0 comments on commit 75dd4be

Please sign in to comment.