You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting close enough on the core framework and unit test code to want
to start working on the CirlceCI side of things. This commit forms a
solid baseline to use while working on .circleci/config.yml
Related to: #133
Copy file name to clipboardExpand all lines: test/helpers/init.js
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,27 @@ process.env.FALCON_COMMAND_RUNNER = path.resolve('bin/run'); // Pat
7
7
process.env.FALCON_TEST_TEMPDIR=path.resolve('test/temp');// Path to the temp directory used during tests.
8
8
process.env.FALCON_TEST_PROJECTDIR=path.resolve('test/projects');// Path to the directory that holds sample ADK projects.
9
9
10
+
// Check environment for cues about handling debug. Allows CI environment to flip debug on/off.
11
+
process.env.FALCON_TEST_SHOW_STDOUT=process.env.FALCON_TEST_SHOW_STDOUT||'';// stdout from spawned process is piped to the main process.
12
+
process.env.FALCON_TEST_SHOW_STDERR=process.env.FALCON_TEST_SHOW_STDERR||'';// stderr from spawned process is piped to the main process.
13
+
process.env.FALCON_TEST_SHOW_RESULT=process.env.FALCON_TEST_SHOW_RESULT||'';// Prints internal commandResult object at the conclusion of executeWithInput().
0 commit comments