Current section

Files

Jump to
playwright lib mix tasks playwright.install.ex
Raw

lib/mix/tasks/playwright.install.ex

defmodule Mix.Tasks.Playwright.Install do
@moduledoc """
Installs Playwright browsers.
```bash
$ mix playwright.install
```
"""
@shortdoc "Installs Playwright browsers in OS specific locations"
use Mix.Task
@impl true
def run(_args) do
Playwright.SDK.CLI.install()
end
end