wallet-core/tooling/talertest/node/runtime.js

44 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-11-02 21:13:56 +01:00
/*
This file is part of TALER
(C) 2016 Inria
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
*
* @author Florian Dold
*/
"use strict";
let vm = require("vm");
let fs = require("fs");
let process = require("process");
let path = require("path");
2016-11-02 21:13:56 +01:00
let testFile = path.resolve(process.argv[2]);
2016-11-02 21:13:56 +01:00
console.log("TAP version 13");
console.log("running test", testFile);
2016-11-02 21:13:56 +01:00
2016-11-08 16:52:03 +01:00
process.on('unhandledRejection', function(reason, p){
console.log("Possibly Unhandled Rejection at: Promise ", p, " reason: ", reason);
process.exit(1);
});
let tt = require("../talertest");
require(testFile);
2016-11-02 21:13:56 +01:00
tt.run();