@@ -11,6 +11,7 @@ describe("basic usage", () => {
1111expect ( stdout ) . toContain ( "Node" ) ;
1212expect ( stdout ) . toContain ( "npm" ) ;
1313expect ( stdout ) . toContain ( "Yarn" ) ;
14+ expect ( stdout ) . toContain ( "pnpm" ) ;
1415} ) ;
1516
1617it ( "should work with v alias" , async ( ) => {
@@ -22,6 +23,7 @@ describe("basic usage", () => {
2223expect ( stdout ) . toContain ( "Node" ) ;
2324expect ( stdout ) . toContain ( "npm" ) ;
2425expect ( stdout ) . toContain ( "Yarn" ) ;
26+ expect ( stdout ) . toContain ( "pnpm" ) ;
2527} ) ;
2628
2729it ( "should work with --version" , async ( ) => {
@@ -33,6 +35,7 @@ describe("basic usage", () => {
3335expect ( stdout ) . toContain ( "Node" ) ;
3436expect ( stdout ) . toContain ( "npm" ) ;
3537expect ( stdout ) . toContain ( "Yarn" ) ;
38+ expect ( stdout ) . toContain ( "pnpm" ) ;
3639} ) ;
3740
3841it ( "should work with -v alias" , async ( ) => {
@@ -44,6 +47,7 @@ describe("basic usage", () => {
4447expect ( stdout ) . toContain ( "Node" ) ;
4548expect ( stdout ) . toContain ( "npm" ) ;
4649expect ( stdout ) . toContain ( "Yarn" ) ;
50+ expect ( stdout ) . toContain ( "pnpm" ) ;
4751} ) ;
4852
4953it ( "should work and gets more info in project root" , async ( ) => {
@@ -57,6 +61,7 @@ describe("basic usage", () => {
5761expect ( stdout ) . toContain ( "Node" ) ;
5862expect ( stdout ) . toContain ( "npm" ) ;
5963expect ( stdout ) . toContain ( "Yarn" ) ;
64+ expect ( stdout ) . toContain ( "pnpm" ) ;
6065} ) ;
6166
6267it ( "shows an appropriate warning on supplying unknown args" , async ( ) => {