From ff0d335d712b71247c879f645ee84965751189e4 Mon Sep 17 00:00:00 2001 From: Enrico Fasoli Date: Thu, 24 Sep 2015 15:12:42 +0200 Subject: [PATCH] fixati test non corretti --- test/autostart-test.coffee | 4 ++-- test/shell-test.coffee | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/autostart-test.coffee b/test/autostart-test.coffee index f04fe35..de77b21 100644 --- a/test/autostart-test.coffee +++ b/test/autostart-test.coffee @@ -26,9 +26,9 @@ describe 'shell autostart', -> acc = 0 asjon.receive (e,l) -> if acc is 0 - l.join().should.equal 'Operazione in corso: npm test' + l.join().should.equal 'operazione in corso: npm test' if acc is 1 - l.join().should.equal 'Operazione "completata": npm test' + l.join().should.equal 'operazione "completata": npm test' acc++ if acc is 2 then done() process.env.AUTO_RUN_TESTS = 'true' diff --git a/test/shell-test.coffee b/test/shell-test.coffee index 95409c7..1b56c40 100644 --- a/test/shell-test.coffee +++ b/test/shell-test.coffee @@ -21,8 +21,8 @@ describe 'modulo shell', -> process.env.ADMIN_ROOM = ':not-mocha' asjon.send 'asjon controlla gli aggiornamenti' - ss = ['Operazione in corso: ', 'Operazione "completata": '] - regexes = [/Operazione in corso: (.+)/i, /Operazione "completata": (.+)/i] + ss = ['operazione in corso: ', 'operazione "completata": '] + regexes = [/operazione in corso: (.+)/i, /operazione "completata": (.+)/i] it 'dovrebbe riconoscere la stanza autorizzata', (done) -> acc = 0 @@ -79,9 +79,9 @@ describe 'modulo shell', -> acc = 0 asjon.receive (e,l) -> if acc is 0 - l.join().should.equal 'Operazione in corso: git pull && npm install' + l.join().should.equal 'operazione in corso: git pull && npm install' if acc is 1 - l.join().should.equal 'Operazione "completata": git pull && npm install' + l.join().should.equal 'operazione "completata": git pull && npm install' if acc is 2 l.join().should.equal 'riavvio in 5 SECONDI' acc++