X Tutup
Skip to content

Commit e3b1012

Browse files
committed
Update RushCommandLineParser.test.ts
New test name based on feedback 🌞
1 parent fcc5266 commit e3b1012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/rush-lib/src/cli/test/RushCommandLineParser.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ describe('RushCommandLineParser', () => {
285285

286286
describe(`in repo with tests for add`, () => {
287287
describe(`'add' action`, () => {
288-
it(`adds a dependency to just one sub-repo`, () => {
288+
it(`adds a dependency to just one repo in the workspace`, () => {
289289
const startPath: string = resolve(__dirname, 'addRepo');
290290
const aPath: string = resolve(__dirname, 'addRepo/a');
291291
FileSystem.deleteFile(resolve(__dirname, `addRepo/a/package-deps.json`));
@@ -312,7 +312,7 @@ describe('RushCommandLineParser', () => {
312312
});
313313

314314
describe(`'add' action with --all`, () => {
315-
it(`adds a dependency to just one sub-repo`, () => {
315+
it(`adds a dependency to all repos in the workspace`, () => {
316316
const startPath: string = resolve(__dirname, 'addRepo');
317317
const aPath: string = resolve(__dirname, 'addRepo/a');
318318
FileSystem.deleteFile(resolve(__dirname, `addRepo/a/package-deps.json`));

0 commit comments

Comments
 (0)
X Tutup