Sha256: 75906df2ed9d21091ec2efe22a59439c2a131d3c63d7fafd323f114cd8ffbd7d

Contents?: true

Size: 828 Bytes

Versions: 6

Compression:

Stored size: 828 Bytes

Contents

# GOV.UK Test

Gem to package test dependencies and config for GOV.UK applications. Cousin of [govuk_app_config](https://github.com/alphagov/govuk_app_config).

## Installation

```ruby
gem 'govuk_test'
```

And then execute:

    $ bundle

## Usage

Somewhere in your `spec_helper`, `rails_helper`, or `spec/support/govuk_test.rb` put:

```rb
GovukTest.configure
```

It's also possible to pass optional arguments `:chrome_options` and/or `:window_size `
to `GovukTest.configure`:

```rb
GovukTest.configure(chrome_options: { some_key: "some value" })

# or

GovukTest.configure(window_size: "1366,768")

# or

GovukTest.configure(chrome_options: { some_key: "some value" }, window_size: "800,600")
```

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
govuk_test-1.0.3 README.md
govuk_test-1.0.2 README.md
govuk_test-1.0.1 README.md
govuk_test-1.0.0 README.md
govuk_test-0.5.0 README.md
govuk_test-0.4.4 README.md