Skip to content

Commit 5e3d0ed

Browse files
committed
lint
1 parent 159c080 commit 5e3d0ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/02-nested-boolean-logic.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function start () {
3232
operator: 'greaterThanInclusive',
3333
value: 5
3434
}],
35-
name: "short foul limit"
35+
name: 'short foul limit'
3636
}, {
3737
all: [{
3838
fact: 'gameDuration',
@@ -45,7 +45,7 @@ async function start () {
4545
value: 6
4646
}
4747
}],
48-
name: "long foul limit"
48+
name: 'long foul limit'
4949
}]
5050
},
5151
event: { // define the event to fire when the conditions evaluate truthy

test/condition.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function condition () {
1212
return {
1313
all: [{
1414
id: '6ed20017-375f-40c9-a1d2-6d7e0f4733c5',
15-
name: "team participation in form",
15+
name: 'team participation in form',
1616
fact: 'team_participation',
1717
operator: 'equal',
1818
value: 50,
@@ -30,7 +30,7 @@ describe('Condition', () => {
3030
expect(subject).to.have.property('operator')
3131
expect(subject).to.have.property('value')
3232
expect(subject).to.have.property('path')
33-
expect(subject).to.have.property('name');
33+
expect(subject).to.have.property('name')
3434
})
3535

3636
it('boolean conditions have properties', () => {

0 commit comments

Comments
 (0)