Skip to content

Commit e2d1658

Browse files
author
Lee Richmond
committed
Remove log statements
1 parent 4e9e57e commit e2d1658

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

test/integration/nested-persistence-test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ describe('nested persistence', function() {
248248

249249
it('should not be sent in the payload', function(done) {
250250
instance.save({ with: { books: 'genre' } }).then((response) => {
251-
console.log(payloads[0]['data'])
252251
expect(payloads[0]['data']['relationships']).to.eq(undefined)
253252
done();
254253
});

test/integration/validations-test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ describe('validations', function() {
125125
instance.save({ with: { books: 'genre' }}).then((success) => {
126126
expect(instance.isPersisted()).to.eq(false);
127127
expect(success).to.eq(false);
128-
console.log(instance.books[0].genre.errors)
129128
expect(instance.books[0].genre.errors).to.deep.equal({
130129
name: 'cannot be blank',
131130
});

0 commit comments

Comments
 (0)