Skip to content

Commit 427554c

Browse files
committed
Batalla con tests pasando
1 parent 8867ab8 commit 427554c

File tree

3 files changed

+354
-31
lines changed

3 files changed

+354
-31
lines changed

spec/Battle.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ describe('Battle type', function () {
290290

291291
});
292292

293-
xdescribe('Attack action', function () {
293+
describe('Attack action', function () {
294294

295295
it('requires to choose a target character.', function (done) {
296296
battle.on('turn', function () {
@@ -478,7 +478,7 @@ describe('Battle type', function () {
478478

479479
});
480480

481-
xdescribe('Acting on a target with improved defense', function () {
481+
describe('Acting on a target with improved defense', function () {
482482

483483
it('(attack) makes the target\'s defense to be restored.',
484484
function (done) {
@@ -538,7 +538,7 @@ describe('Battle type', function () {
538538

539539
});
540540

541-
xdescribe('Cast action', function () {
541+
describe('Cast action', function () {
542542

543543
it('requires to choose an scroll.', function (done) {
544544
battle.on('turn', function () {
@@ -798,7 +798,7 @@ describe('Battle type', function () {
798798

799799
});
800800

801-
xdescribe('Some battles', function () {
801+
describe('Some battles', function () {
802802

803803
it('are won by heroes.', function (done) {
804804
heroTank.defense = 0;

0 commit comments

Comments
 (0)