Skip to content

Commit

Permalink
changed tests to all running
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Walsh committed Feb 17, 2017
1 parent cb8a1a0 commit 4464acf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('private application', function() {
})
})

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

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

var InvoiceID = "";

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

it('create invoice', function(done) {
this.timeout(10000);
Expand Down Expand Up @@ -348,7 +348,7 @@ describe('private application', function() {

var PaymentID = "";

describe.skip('payments', function() {
describe('payments', function() {
this.timeout(10000);
it('Create Payment', function(done) {

Expand Down Expand Up @@ -390,6 +390,7 @@ describe('private application', function() {
it('Delete Payment', function(done) {
//NOT CURRENTLY SUPPORTED.
//Use update Payment with Payment.Status = DELETED.
done();
});

});
Expand Down

0 comments on commit 4464acf

Please sign in to comment.