Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Scar26 <mmatty26@gmail.com>
  • Loading branch information
Scar26 committed Sep 6, 2020
1 parent f9a3e5b commit 1568993
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions test/initialize-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,32 @@ const expect = chai.expect
const juice = require('../index')

const trainingSet = {
"lang": "en",
"data": [
lang: 'en',
data: [
{
"intent": "greetings.bye",
"utterances": [
"goodbye for now",
"bye bye take care"
intent: 'greetings.bye',
utterances: [
'goodbye for now',
'bye bye take care'
],
"answers": [
answers: [
{
"action": "response",
"body": "Ok Cya"
action: 'response',
body: 'Ok Cya'
}
]
},
{
"intent": "greetings.hello",
"utterances": [
"hello",
"hi",
"howdy"
intent: 'greetings.hello',
utterances: [
'hello',
'hi',
'howdy'
],
"answers": [
answers: [
{
"action": "response",
"body": "Hello <customer-name>"
action: 'response',
body: 'Hello <customer-name>'
}
]
}
Expand Down

0 comments on commit 1568993

Please sign in to comment.