class Playwright::CLI::Commands::List::Command

Public Class Methods

run() click to toggle source
# File lib/playwright/cli/commands/list/command.rb, line 12
def self.run
  new.run
end

Public Instance Methods

run() click to toggle source
# File lib/playwright/cli/commands/list/command.rb, line 16
def run
  display.print "Playwright Scripts:\n"
  display.print file_manager.list_scripts, indent: true
end