From 6354f13c2f44ca4eaf50f5059cd303a2fff3175d Mon Sep 17 00:00:00 2001 From: zkochan Date: Sat, 1 Jul 2017 18:11:25 +0300 Subject: [PATCH] test: resolution stage completion is logged --- test/install/misc.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/install/misc.ts b/test/install/misc.ts index 44601f022f..00b08dbed5 100644 --- a/test/install/misc.ts +++ b/test/install/misc.ts @@ -45,6 +45,11 @@ test('no dependencies (lodash)', async (t: tape.Test) => { await installPkgs(['lodash@4.0.0'], testDefaults({reporter})) + t.ok(reporter.calledWithMatch({ + name: 'pnpm:stage', + level: 'debug', + message: 'resolution_done', + }), 'resolution stage done logged') t.ok(reporter.calledWithMatch({ level: 'info', message: 'Creating dependency tree',