UNPKG

playwright-fluent

Version:
16 lines (15 loc) 556 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const get_chrome_path_1 = require("../get-chrome-path"); const fs_1 = require("../../fs"); describe('get-chrome-path in real env', () => { test('should return path in real env', () => { // Given // When const chromePath = (0, get_chrome_path_1.getChromePath)(); // Then // eslint-disable-next-line no-console console.log(`Chrome path: '${chromePath}'`); expect((0, fs_1.fileExists)(chromePath)).toBe(true); }); });