UNPKG
intern
Version:
intern-2 (2.2.4)
latest (4.10.1)
next (4.5.0)
4.10.1
4.10.0
4.9.1
4.9.0
4.8.8
4.8.7
4.8.6
4.8.5
4.8.4
4.8.3
4.8.2
4.8.1
4.8.0
4.7.1
4.7.0
4.6.0
4.5.0
4.4.3
4.4.2
4.4.1
4.4.0
4.3.6
4.3.5
4.3.4
4.3.3
4.3.2
4.3.1
4.3.0
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.2
4.0.1
4.0.0
4.0.0-rc.1
4.0.0-rc.0
4.0.0-alpha.16
4.0.0-alpha.15
4.0.0-alpha.14
4.0.0-alpha.13
4.0.0-alpha.12
4.0.0-alpha.11
4.0.0-alpha.10
4.0.0-alpha.9
4.0.0-alpha.8
4.0.0-alpha.7
4.0.0-alpha.6
4.0.0-alpha.5
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
4.0.0-alpha.0
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.3
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-rc.3
3.0.0-rc.2
3.0.0-rc.1
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.7.0
1.6.2
1.6.1
1.6.0
1.5.0
1.4.0
1.3.2
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
Intern. A next-generation code testing stack for JavaScript.
theintern.io
theintern/intern
intern
/
lib
/
types.d.ts
13 lines
(12 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Test
from
'./Test'
;
export
interface
InternError
{
name
:
string
;
message
:
string
;
stack
?:
string
;
showDiff
?:
boolean
;
actual
?:
any
;
expected
?:
any
;
relatedTest
?:
Test
;
reported
?:
boolean
; }
export
declare
type
RuntimeEnvironment
=
'node'
|
'browser'
;