UNPKG

chocolate

Version:

A full stack Node.js web framework built using Coffeescript

9 lines (7 loc) 294 B
Newnotes = require './newnotes' describe 'Newnotes', -> it 'creates, then lists a basic todo', -> newnotes = new Newnotes newnotes.add 'do first' newnotes.add 'do after' expect([todo.title for todo in newnotes.list()].join(',')).toEqual 'do first,do after'