packages feed

hspec-webdriver-1.2.1: hspec-webdriver.cabal

name:              hspec-webdriver
version:           1.2.1
cabal-version:     >= 1.10
build-type:        Simple
synopsis:          Write end2end web application tests using webdriver and hspec
category:          Web
author:            John Lenz <lenz@math.uic.edu>
maintainer:        John Lenz <lenz@math.uic.edu>, Divam <dfordivam@gmail.com>
license:           MIT
license-file:      LICENSE
homepage:          https://github.com/dfordivam/hspec-webdriver-clone
stability:         Experimental
description:       For end to end testing of web applications from Haskell, the 
                   <https://hackage.haskell.org/package/webdriver webdriver> package is a great tool but just
                   contains the code to communicate with the browser.  This package integrates webdriver
                   with <http://hspec.github.io hspec>.

extra-source-files: README.md
                    Changelog.md

source-repository head
    type: git
    location: https://github.com/dfordivam/hspec-webdriver-clone.git

library
    hs-source-dirs:  .
    exposed-modules:  Test.Hspec.WebDriver
    ghc-options:   -Wall
    default-language: Haskell98

    build-depends: base                 >= 4          && < 5

                 , HUnit                >= 1.2
                 , aeson                >= 0.8
                 , data-default         >= 0.5
                 , hashable             >= 1.2
                 , hspec-core           >= 2.0 && < 2.8
                 , hspec                >= 2.0 && < 2.8
                 , lifted-base          >= 0.2
                 , stm                  >= 2.4
                 , text                 >= 0.11
                 , transformers         >= 0.3
                 , unordered-containers >= 0.2
                 , webdriver            >= 0.6.1