dotfiles/.vscode/extensions/codezombiech.gitignore-0.2.0/node_modules/github/templates/test_section.js.tpl
Cyryl Płotnicki 280bcab25f VSCode update
2016-09-24 13:12:34 +02:00

30 lines
608 B
Smarty

/*
* 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%>
});