This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --require spec_helper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Chatbot { | |
| constructor() { | |
| this.rules = { | |
| hola: () => "Hola, pideme lo que quieras :D", | |
| adios: () => "Bye bye, espero hablemos de nuevo pronto <3", | |
| ayuda: () => | |
| "Puedo responder a saludos, despedidas y mostrar ayuda básica" | |
| }; | |
| } |