dotfiles/.vscode/extensions/codezombiech.gitignore-0.2.0/node_modules/github/templates/test_section.js.tpl

31 lines
608 B
Smarty
Raw Normal View History

2016-09-24 12:12:34 +01:00
/*
* Copyright 2012 Cloud9 IDE, Inc.
*
* This product includes software developed by
* Cloud9 IDE, Inc (http://c9.io).
*
* Author: Mike de Boer <info@mikedeboer.nl>
*/
"use strict";
var Assert = require("assert");
var Client = require("./../../index");
describe("[<%sectionName%>]", function() {
var client;
var token = "c286e38330e15246a640c2cf32a45ea45d93b2ba";
beforeEach(function() {
client = new Client({
version: "<%version%>"
});
client.authenticate({
type: "oauth",
token: token
});
});
<%testBody%>
});