Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
3c0090ae2d93902f7f817fc6789efda262c44f01
/
.
/
static
/
tests
/
frontend-testing.interfaces.ts
blob: 3cd2d59878aaf929a3c8994f3191cc926d6365a3 [
file
] [
log
] [
blame
] [
raw
]
export
interface
ITestable
{
readonly
description
:
string
;
run
():
Promise
<void>
;
}
export
interface
IFrontendTesting
{
add
(
test
:
ITestable
);
getAllTestNames
():
string
[];
run
(
testToRun
:
string
):
Promise
<void>
;
}