Skip to content

Commit

Permalink
chore: Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Apr 26, 2024
1 parent b102ca0 commit 82753b7
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 75 deletions.
6 changes: 1 addition & 5 deletions tests/helpers/shared-test-setups/customizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const options: Options = {
addon: 'packages/ember-container-query',
testApp: 'demo-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/helpers/shared-test-setups/glint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const options: Options = {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/helpers/shared-test-setups/javascript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const options: Options = {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/helpers/shared-test-setups/scoped.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const options: Options = {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/helpers/shared-test-setups/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const options: Options = {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-files-from-blueprints/npm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ test('steps | create-files-from-blueprints > npm', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: true,
isPnpm: false,
isYarn: false,
},
packageManager: 'npm' as const,
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-files-from-blueprints/pnpm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ test('steps | create-files-from-blueprints > pnpm', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: true,
isYarn: false,
},
packageManager: 'pnpm' as const,
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/customizations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ test('steps | create-options > customizations', function () {
addon: 'packages/ember-container-query',
testApp: 'demo-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/glint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ test('steps | create-options > glint', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/javascript.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ test('steps | create-options > javascript', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/npm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ test('steps | create-options > npm', function () {
addon: 'new-v1-addon',
testApp: 'test-app',
},
packageManager: {
isNpm: true,
isPnpm: false,
isYarn: false,
},
packageManager: 'npm',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/pnpm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ test('steps | create-options > pnpm', function () {
addon: 'new-v1-addon',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: true,
isYarn: false,
},
packageManager: 'pnpm',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/scoped.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ test('steps | create-options > scoped', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/typescript.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ test('steps | create-options > typescript', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map([
Expand Down
6 changes: 1 addition & 5 deletions tests/steps/create-options/v2-addon.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ test('steps | create-options > v2 addon', function () {
addon: 'ember-container-query',
testApp: 'test-app',
},
packageManager: {
isNpm: false,
isPnpm: false,
isYarn: true,
},
packageManager: 'yarn',
packages: {
addon: {
dependencies: new Map(),
Expand Down

0 comments on commit 82753b7

Please sign in to comment.