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
| .kix-page-compact::before { | |
| border-top: 0 !important; | |
| } |
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
| describe("QuizQuestion.js", () => { | |
| it("should have a method named handleClick with the correct parameter @quiz-question-should-have-handle-click", () => { | |
| assert("CONDITION CHECKING IF HANDLECLICK EXISTS", "`QuizQuestion.js` does not contain a method named `handleClick`") | |
| assert("CONDITION CHECKING HANDLECLICK PARAMETER", "`QuizQuestion.js does not have the method named `handleClick` with a parameter named `buttonText`") | |
| }) | |
| }) |
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
| # From https://help.github.com/en/articles/configuring-git-to-handle-line-endings | |
| # Set the default behavior, in case people don't have core.autocrlf set. | |
| * text=auto | |
| # Explicitly declare text files you want to always be normalized and converted | |
| # to native line endings on checkout. | |
| *.c text | |
| *.h text | |
| # Declare files that will always have CRLF line endings on checkout. |
OlderNewer