Skip to content

Commit

Permalink
re-added the tests after commenting them out
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Walsh committed Mar 14, 2017
1 parent acb9aeb commit 5e2805d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/accountingtests.js
Expand Up @@ -215,7 +215,7 @@ describe('regression tests', function() {
// });


describe.skip('organisations', function() {
describe('organisations', function() {
it('get', function(done) {
currentApp.core.organisations.getOrganisation()
.then(function(ret) {
Expand Down Expand Up @@ -336,7 +336,7 @@ describe('regression tests', function() {

});

describe.skip('accounts', function() {
describe('accounts', function() {

//Accounts supporting data
var accountClasses = ["ASSET", "EQUITY", "EXPENSE", "LIABILITY", "REVENUE"];
Expand Down Expand Up @@ -530,7 +530,7 @@ describe('regression tests', function() {

});

describe.skip('invoices', function() {
describe('invoices', function() {
it('create invoice', function(done) {
var invoice = currentApp.core.invoices.newInvoice({
Type: 'ACCREC',
Expand Down Expand Up @@ -625,7 +625,7 @@ describe('regression tests', function() {
})
});

describe.skip('payments', function() {
describe('payments', function() {
/* Please note that this test pays an invoice created in the previous tests */

var testAccountId;
Expand Down Expand Up @@ -745,7 +745,7 @@ describe('regression tests', function() {

});

describe.skip('bank transactions', function() {
describe('bank transactions', function() {
var sharedTransaction;

it('creates a new transaction', function(done) {
Expand Down Expand Up @@ -808,7 +808,7 @@ describe('regression tests', function() {
});
});

describe.skip('bank transfers', function() {
describe('bank transfers', function() {
var sampleTransferID = "";

it('create sample bank transfer', function(done) {
Expand Down Expand Up @@ -867,7 +867,7 @@ describe('regression tests', function() {

});

describe.skip('tracking categories', function() {
describe('tracking categories', function() {
var sampleTrackingCategory = {
Name: "My First Category"
};
Expand Down Expand Up @@ -1045,7 +1045,7 @@ describe('regression tests', function() {
});
});

describe.skip('items', function() {
describe('items', function() {
var sampleItem = {
Code: 'Item-' + Math.random(),
Name: 'Fully Tracked Item',
Expand Down Expand Up @@ -1143,7 +1143,7 @@ describe('regression tests', function() {
});
});

describe.skip('contacts', function() {
describe('contacts', function() {
var sampleContact = {
Name: 'Johnnies Coffee' + Math.random(),
FirstName: 'John',
Expand Down Expand Up @@ -1322,7 +1322,7 @@ describe('regression tests', function() {
});
})

describe.skip('journals', function() {
describe('journals', function() {
var sampleJournalId = "";

it('get (paging with callback)', function(done) {
Expand Down Expand Up @@ -1398,7 +1398,7 @@ describe('regression tests', function() {
});
});

describe.skip('users', function() {
describe('users', function() {
it('retrieves a list of users', function(done) {

currentApp.core.users.getUsers()
Expand Down

0 comments on commit 5e2805d

Please sign in to comment.