17 lines
270 B
Haxe
17 lines
270 B
Haxe
package global;
|
|
|
|
typedef TestDequeue = {
|
|
/**
|
|
The test name
|
|
**/
|
|
var name : String;
|
|
/**
|
|
The path of the test file, undefined if test is not ran through a file.
|
|
**/
|
|
@:optional
|
|
var file : String;
|
|
/**
|
|
The nesting level of the test.
|
|
**/
|
|
var nesting : Float;
|
|
}; |