Skip to content

Commit

Permalink
chore: fix typo (mthenw#229)
Browse files Browse the repository at this point in the history
Related to mthenw#163
  • Loading branch information
EvertEt authored Mar 9, 2021
1 parent 9d14ac5 commit 6610661
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ describe('browser application', () => {
btn.className.should.containEql('play');
const log = window.document.querySelector('.log');
log.childNodes.length.should.be.equal(2);
log.lastChild.textContent.should.be.equal('==> SKIPED: 2 <==');
log.lastChild.textContent.should.be.equal('==> SKIPPED: 2 <==');
});

it('should play', () => {
Expand All @@ -230,7 +230,7 @@ describe('browser application', () => {
io.emit('line', 'line1');
const log = window.document.querySelector('.log');
log.childNodes.length.should.be.equal(1);
log.lastChild.textContent.should.be.equal('==> SKIPED: 1 <==');
log.lastChild.textContent.should.be.equal('==> SKIPPED: 1 <==');
btn.className.should.containEql('play');
btn.dispatchEvent(event);
io.emit('line', 'line2');
Expand Down
2 changes: 1 addition & 1 deletion web/assets/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ window.App = (function app(window, document) {
.on('line', function(line) {
if (_isPaused) {
_skipCounter += 1;
self.log('==> SKIPED: ' + _skipCounter + ' <==', (_skipCounter > 1));
self.log('==> SKIPPED: ' + _skipCounter + ' <==', (_skipCounter > 1));
} else {
self.log(line);
}
Expand Down

0 comments on commit 6610661

Please sign in to comment.