Skip to content

Commit

Permalink
Enable older tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dominickp committed Nov 8, 2016
1 parent 8f9914b commit f40f5e5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/antfarm/antfarm.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var should = require('chai').should();
var Antfarm = require('./../../lib/antfarm');

xdescribe('Antfarm', function() {
describe('Antfarm', function() {

var options = {log_out_level: "error"};
var af;
Expand Down
2 changes: 1 addition & 1 deletion test/environment/logger.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var should = require('chai').should();
var Antfarm = require('./../../lib/antfarm');

xdescribe('Logger', function() {
describe('Logger', function() {

var af;

Expand Down
2 changes: 1 addition & 1 deletion test/job/fileJob.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var tmp = require('tmp');
var fs = require("fs");
var path = require('path');

xdescribe('FileJob', function() {
describe('FileJob', function() {

var af, tempFolderCleanupCallback;

Expand Down
2 changes: 1 addition & 1 deletion test/job/job.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var tmp = require('tmp');
var fs = require("fs");
var path = require('path');

xdescribe('Job', function() {
describe('Job', function() {

var af, tempFolderCleanupCallback;

Expand Down
2 changes: 1 addition & 1 deletion test/nest/folder.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var Antfarm = require('./../../lib/antfarm');

var tmp = require('tmp');

xdescribe('Nest Folder', function() {
describe('Nest Folder', function() {

var options = {log_out_level: "error"};
var af, tunnel, tmpobj;
Expand Down
2 changes: 1 addition & 1 deletion test/nest/webhook.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var should = require('chai').should();
var Antfarm = require('./../../lib/antfarm');

xdescribe('Nest Webhook', function() {
describe('Nest Webhook', function() {

var options = {log_out_level: "error"};
var af, tunnel, tmpobj;
Expand Down
2 changes: 1 addition & 1 deletion test/tunnel/tunnel.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var path = require('path');
//var mock = require('mock-fs');


xdescribe('Tunnels', function() {
describe('Tunnels', function() {

var af, tempFolderCleanupCallback;

Expand Down
2 changes: 1 addition & 1 deletion test/ui/interfaceManager.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var path = require('path');
//var mock = require('mock-fs');


xdescribe('Interface Manager', function() {
describe('Interface Manager', function() {
var af, tunnel, webhook, im;

var options = {
Expand Down

0 comments on commit f40f5e5

Please sign in to comment.