This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as t from "@taquito/taquito"; | |
import * as s from "@taquito/signer"; | |
import * as c from '@taquito/michel-codec'; | |
import * as fs from 'fs'; | |
async function main() { | |
const secretKeys = JSON.parse(fs.readFileSync(process.env['HOME'] + '/.tezos-client/secret_keys', 'utf-8')) as {name: string, value: string}[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
logger '{ | |
"message": "Some test message", | |
"context": { | |
"reportLocation": { | |
"functionName": "my_function" | |
} | |
}, | |
"serviceContext": { | |
"service": "my service", | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'geofire' { | |
import firebase from 'firebase' | |
namespace GeoFire { | |
type Dictionary<T> = { [key:string]: T } | |
type Latitude = number | |
type Longitude = number | |
type Ref = firebase.database.Reference | |
type Location = [Latitude, Longitude] | |
type CenterCriteria = {center:Location} | |
type RadiusCriteria = {radius: number} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Original Author: https://github.com/mhevery | |
* Mangled for debug support by: Bijou Trouvaille | |
* The original MIT License can be found here | |
* https://github.com/mhevery/jasmine-node/blob/master/LICENSE | |
*/ | |
(function () { | |
var Path = require ( 'path' ); | |
var _ = require ('underscore'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var walkdir = require('walkdir'); | |
var collection = require('./spec-collection'); | |
var path = require('path'); | |
var fs = require('fs'); | |
var child_process = require('child_process'); | |
var baseArgv = []; | |
for(var i = 0; i < process.argv.length; i++) { | |
if(process.argv[i] !== '--autotest') { |