We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8406ef4 + c42cbdf commit cf5ba30Copy full SHA for cf5ba30
test/Ported/Issues/RavenDB_14724.ts
@@ -20,7 +20,7 @@ describe("RavenDB_14724", function () {
20
const id = "users/1";
21
22
{
23
- await testContext.setupRevisions(store, false, 5);
+ await testContext.setupRevisions(store, true, 5);
24
25
26
const session = store.openSession();
@@ -47,14 +47,14 @@ describe("RavenDB_14724", function () {
47
assertThat(revisions)
48
.hasSize(2);
49
50
+ await session.delete(id);
51
+ await session.saveChanges();
52
+
53
const configuration = new RevisionsConfiguration();
54
configuration.defaultConfig = null;
55
56
const operation = new ConfigureRevisionsOperation(configuration);
57
await store.maintenance.send(operation);
-
- await session.delete(id);
- await session.saveChanges();
58
}
59
60
0 commit comments