class Fastlane::Actions::NpmTestAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 24
def self.authors
  ["Erick Martins"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 37
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :script,
                       default_value: 'test',
                         description: "Test script",
                            optional: true,
                                type: String),
    
    FastlaneCore::ConfigItem.new(key: :arguments,
                        default_value: [],
                          description: "Script arguments",
                            optional: true,
                                type: Array),

    FastlaneCore::ConfigItem.new(key: :coverage,
                        default_value: false,
                          description: "With coverage",
                            optional: true,
                                type: Boolean),

    FastlaneCore::ConfigItem.new(key: :step_name,
                       default_value: "Running tests",
                         description: "Name for this step",
                            optional: true,
                                type: String),
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 20
def self.description
  "A very simple plugin to run npm scripts"
end
details() click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 32
def self.details
  # Optional:
  "A very simple plugin to run npm scripts"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 65
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
  #
  # [:ios, :mac, :android].include?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 28
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(params) click to toggle source
# File lib/fastlane/plugin/npm/actions/npm_test_action.rb, line 7
def self.run(params)
  arguments = []
  arguments = ['--coverage'] if params[:coverage]
  arguments.concat params[:arguments]

  other_action.npm_run(
    script: 'test', 
    step_name: params[:step_name],
    arguments: params[:arguments]

  )
end