aboutsummaryrefslogtreecommitdiff
blob: a213375bdc89d88c96f4efacd1a69bf212a35f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit shards

DESCRIPTION="LuckyFlow is a library for testing user flows in the browser"
HOMEPAGE="https://github.com/luckyframework/lucky_flow"
SRC_URI="https://github.com/luckyframework/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="
	dev-crystal/crystal-html5
	dev-crystal/habitat
	dev-crystal/selenium
	dev-crystal/webdrivers
	dev-crystal/webless
"

src_test() {
	ecrystal spec --tag "~headless_chrome"
}