mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
started adding more pack tests and packing of temp ops
This commit is contained in:
parent
77cafa36af
commit
612079ef8a
2 changed files with 17 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
|||
#!/bin/bash
|
||||
#!/bin/bash -x
|
||||
|
||||
# find all the docHistories with unpacked ops and pack them
|
||||
|
||||
# need to keep track of docs already done
|
||||
|
||||
HOST=${1:-"localhost:3015"}
|
||||
T=${2:-10}
|
||||
|
||||
|
|
|
@ -230,3 +230,17 @@ describe "PackManager", ->
|
|||
|
||||
it "should call the callback", ->
|
||||
@callback.called.should.equal true
|
||||
|
||||
describe "convertDocsToPacks", ->
|
||||
describe "with several small packs", ->
|
||||
beforeEach ->
|
||||
@ops = [
|
||||
{ op: "op-3", meta: "meta-3", v: 3},
|
||||
{ op: "op-4", meta: "meta-4", v: 4}
|
||||
]
|
||||
@PackManager.convertDocsToPacks @ops, @callback
|
||||
# it "should create a single pack", ->
|
||||
# @callback.
|
||||
it "should call the callback", ->
|
||||
@callback.called.should.equal true
|
||||
|
||||
|
|
Loading…
Reference in a new issue