mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
24 lines
804 B
CoffeeScript
24 lines
804 B
CoffeeScript
sinon = require('sinon')
|
|
chai = require('chai').should()
|
|
modulePath = "../../../../app/js/Features/Project/ProjectUpdateHandler.js"
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
describe 'updating a project', ->
|
|
|
|
|
|
beforeEach ->
|
|
@ProjectModel = class Project
|
|
@ProjectModel.update = sinon.stub().callsArg(3)
|
|
@handler = SandboxedModule.require modulePath, requires:
|
|
'../../models/Project':{Project:@ProjectModel}
|
|
|
|
describe 'marking a project as recently updated', ->
|
|
it 'should send an update to mongo', (done)->
|
|
project_id = "project_id"
|
|
@handler.markAsUpdated project_id, (err)=>
|
|
args = @ProjectModel.update.args[0]
|
|
args[0]._id.should.equal project_id
|
|
date = args[1].lastUpdated+""
|
|
now = Date.now()+""
|
|
date.substring(0,5).should.equal now.substring(0,5)
|
|
done()
|