Slide 30
Slide 30 text
Mocha specs
describe 'Orders', ->
it 'searches by seller', (done) ->
wait ->
expect(gridCount('Orders')).to.eql 5
select 'One', from: combo('seller_id')
wait ->
expect(gridCount('Orders')).to.eql 3
select 'Two', from: combo('seller_id')
wait ->
expect(gridCount('Orders')).to.eql 2
done()