Skip to content

Commit a41ddbd

Browse files
committed
fix: wrong func name
1 parent 565b1a2 commit a41ddbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/command/info.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ module.exports = async function (path) {
5353
info.osInfo = await envinfo.helpers.getOSInfo()
5454
info.cpuInfo = await envinfo.helpers.getCPUInfo()
5555
info.osBrowsers = await getOsBrowsers()
56-
info.playwrightBrowsers = await getInstalledBrowsers()
56+
info.playwrightBrowsers = await getPlaywrightBrowsers()
5757

5858
const { helpers, plugins } = config
5959
info.helpers = helpers || "You don't use any helpers"
@@ -82,7 +82,7 @@ module.exports.getMachineInfo = async () => {
8282
edgeInfo: await envinfo.helpers.getEdgeInfo(),
8383
firefoxInfo: await envinfo.helpers.getFirefoxInfo(),
8484
safariInfo: await envinfo.helpers.getSafariInfo(),
85-
playwrightBrowsers: await getInstalledBrowsers(),
85+
playwrightBrowsers: await getPlaywrightBrowsers(),
8686
}
8787

8888
output.print('***************************************')

0 commit comments

Comments
 (0)