Skip to content
This repository was archived by the owner on Jan 18, 2019. It is now read-only.

Practice corrections #19

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion es/02-javascript/02-practica/start-here/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"env": {
"node": true
"node": true,
"jasmine": true
},
"extends": "eslint:recommended",
"rules": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var samples = require('./samplelib');

xdescribe('CharactesView type', function () {
xdescribe('CharactersView type', function () {
'use strict';

var CharactersView = require('../src/CharactersView');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ xdescribe('OptionsStack type', function () {
expect(optionsStack.current).toBe(group);
});

it('adds an options group by assigning a object to current.', function () {
it('adds an options group by assigning an object to current.', function () {
var group = { a: 1, b: 2};
optionsStack.current = group;
expect(MockOptions).toHaveBeenCalledWith(group);
Expand Down
4 changes: 2 additions & 2 deletions es/02-javascript/02-practica/start-here/spec/TurnList.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ xdescribe('The TurnList type', function () {
turnList.reset(characters);
});

it('accepts a set of characters and sort them by inititative.', function () {
it('accepts a set of characters and sorts them by inititative.', function () {
expect(turnList.turnNumber).toBe(0);
expect(turnList.activeCharacterId).toBe(null);
expect(turnList.list).toEqual(['c', 'b', 'a']);
});

it('accepts a set of characters and sort them by inititative.', function () {
it('can play the next turn.', function () {
var turn = turnList.next();

expect(turn.number).toBe(1);
Expand Down
6 changes: 3 additions & 3 deletions es/02-javascript/02-practica/start-here/spec/entities.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('Entities library', function () {

xdescribe('Effect type', function () {

it('allows specify arbitrary feature alterations.', function () {
it('allows to specify arbitrary feature alterations.', function () {
var effect = new Effect({
hp: 5,
mp: -5
Expand Down Expand Up @@ -160,7 +160,7 @@ describe('Entities library', function () {
});
});

it('does not applie an effect if the effect comes from a foe but ' +
it('does not apply an effect if the effect comes from a foe but ' +
'defense roll passed.',
function () {
var isAlly = false;
Expand Down Expand Up @@ -255,7 +255,7 @@ describe('Entities library', function () {
expect(health.effect).toEqual(jasmine.any(Effect));
});

xit('can test if a character can pay its cost.', function () {
xit('knows if a character can pay its cost.', function () {
var health = new Scroll('health', 5, new Effect({ hp: 5 }));
expect(health.canBeUsed(10)).toBe(true);
expect(health.canBeUsed(4)).toBe(false);
Expand Down