Skip to content

Commit

Permalink
fix: remove test for removed API
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Oct 20, 2023
1 parent 8173cd6 commit 327365b
Showing 1 changed file with 1 addition and 30 deletions.
Expand Up @@ -210,35 +210,6 @@ describe("Database Operations", function () {
});
});

describe('record-clean-out', function () {
before(function () {
return TEST_SERVER.send('record-create', {
sessionId: dbSessionId,
cluster: 1,
record: {
name: 'Test',
email: 'test@test.com'
}
})
.bind(this)
.then(function (response) {
this.recordId = new LIB.RID({
cluster: 1,
position: response.position
})
});
});
it("should clean-out a record", function () {
return TEST_SERVER.send('record-clean-out', {
sessionId: dbSessionId,
cluster: this.recordId.cluster,
position: this.recordId.position,
})
.then(function (response) {
response.success.should.be.true;
});
});
});
describe('record-delete', function () {
it("should delete an existing record", function () {
return TEST_SERVER.send('record-delete', {
Expand Down Expand Up @@ -312,4 +283,4 @@ describe("Database Operations", function () {
});
});
})
});
});

0 comments on commit 327365b

Please sign in to comment.