Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
f9222a6532dedc34ce438f8bf21a4d7d6c2e0f4d
/
.
/
static
/
tests
/
frontend-testing.interfaces.ts
blob: a61bde811232f5122df6ec65d568e6850d0c85fa [
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>
;
}