-
Notifications
You must be signed in to change notification settings - Fork 0
/
Code.gs
38 lines (30 loc) · 837 Bytes
/
Code.gs
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
27
28
29
30
31
32
33
34
35
36
37
38
Q.helpers( this );
function tests(){
Utility();
ForecastUtility();
Seasons();
AmisRange();
FirebaseConnector();
APPCache();
}
function doGet( e ) {
Q.urlParams( e.parameter );
Q.config( {
title: "QUnit for AmisMarketApp", // Sets the title of the test page.
hidepassed: true,
notrycatch: false
} );
Q.load(tests);
return Q.getHtml();
};
/**
* show a title in the tests list (there is no the nested modules functionality with QUnit for GAS)
* @param {string} title the title
* @return {void}
*/
function showTitle( title ) {
Q.module( title );
Q.test( "--------------------------------------------------------------------------------------------------------------------------------------------------------------", function( assert ) {
assert.ok( true );
} );
}