getgauge / Flash

Execution progress reporter for Gauge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flash

Actions Status Contributor Covenant

Execution progress reporter for Gauge.

Usage

Install through Gauge

Run the following command in the Gauge project directory to install and add the plugin to project.

gauge install flash
  • Installing specific version
gauge install flash --version 0.0.1

Offline installation

gauge install flash --file flash-0.0.0-linux.x86_64.zip

Usage

  • Ensure that you project's manifest.json file contains flash in the Plugins list.

Something like :

{
"Language": "java",
"Plugins": [
"html-report",
"flash"
]
}	
  • Execute specs and open the URL in browser shown in console output. e.g. http://127.0.0.1:[FLASH_SERVER_PORT]
  • FLASH_SERVER_PORT is a random available port, but can be configured using the config below

Configuration

  • To use a specific port, set FLASH_SERVER_PORT={port} as environment variable or in env/default/flash.properties file.

Build from Source

Requirements

Compiling

Dependencies

go get ./...

Compilation

go run build/make.go

For cross-platform compilation

go run build/make.go --all-platforms

Installing

After compilation

go run build/make.go --install

Installing to a CUSTOM_LOCATION

go run build/make.go --install --plugin-prefix CUSTOM_LOCATION

Creating distributable

Note: Run after compiling

go run build/make.go --distro

For distributable across platforms: Windows and Linux for both x86 and x86_64

go run build/make.go --distro --all-platforms

License

Flash is released under the Apache License, Version 2.0. See LICENSE for the full license text.

Copyright

Copyright 2017 ThoughtWorks, Inc.

About

Execution progress reporter for Gauge

License:Apache License 2.0


Languages

Language:Go 96.7%Language:Shell 3.3%