Commit Graph

1836 Commits (3b76a62515126340f66bd0dc46d04c61632b7042)

Author SHA1 Message Date
Logan Tegman 104d1c6436 Fix sentence spacing 2015-12-31 22:05:13 -08:00
Rex Schrader d220bd0ccd Merge pull request #5692 from ShaggyTech/fix/storing-values-random-space
Fixes #5688 random space in challengeSeed of Storing Values
2015-12-31 21:51:46 -08:00
Rex Schrader b95645e324 Merge pull request #5664 from ltegman/fix/remove-wordblanks-test
Remove Confusing Word-Blank Test
2015-12-31 21:45:57 -08:00
Brandon Eichler 0c551c0225 Fixes #5688 random space in challengeSeed of Storing Values with Equal Operator
In the challengeSeed of Storing Values with the Equal Operator, there was a random space input after the line "// Only change code below this line"
2015-12-31 23:41:17 -06:00
Logan Tegman 61521d491c Merge pull request #5682 from ShaggyTech/fixes-#5655-rephrase-instructions-waypoint-stand-in-line
Rephrase instructions on Waypoint: Stand in Line
2015-12-31 21:12:56 -08:00
Logan Tegman 392a5f7a33 Merge pull request #5680 from SaintPeter/fix/boolean-value-typo
Fix typo in Returning Boolean Values from Functions
2015-12-31 21:12:22 -08:00
Logan Tegman 4537d67ad2 Merge pull request #5685 from SaintPeter/fix/subtraction-var-typo
Fix typo in Subtraction Waypoint
2015-12-31 21:11:47 -08:00
Logan Tegman 16e873845f Remove Confusing Word-Blank Test 2015-12-31 21:10:42 -08:00
Akira Laine 9336ebc58a fixed "break" statement test 2016-01-01 14:13:36 +11:00
SaintPeter a39bfe3e61 Fix typo in Subtraction Waypoint 2015-12-31 18:55:11 -08:00
Logan Tegman 1d8173d913 Merge pull request #5665 from SaintPeter/add/missing-tail-displays
Add Tail or Display Functions where missing
2015-12-31 18:49:32 -08:00
Brandon Eichler f682e33d59 Rephrase instructions on Waypoint: Stand in Line
Instructions were unclear as to what the function should return.
fixes #5655
2015-12-31 20:42:55 -06:00
SaintPeter 9a1196e9d8 Fix typo in Returning Boolean Values from Functions 2015-12-31 18:35:03 -08:00
Rex Schrader 1d3bc2b556 Merge pull request #5675 from pmbenjamin/fix/plus-equals-waypoint-singleQuotes-issue
Fix Plus-Equals Concatenation Waypoint
2015-12-31 18:19:24 -08:00
Peter Benjamin 12d17aa8c8 Fix Plus-Equals Concatenation Waypoint 2015-12-31 16:03:10 -08:00
wilstenholme f99df5a1e1 Fix typos and clarify the description 2015-12-31 18:29:00 -05:00
Logan Tegman 8c77f76f70 Merge pull request #5669 from smrajagopal/fix/5628_remove_unwanted_test_case
Fix #5628 - Remove unwanted test case
2015-12-31 15:14:24 -08:00
Raja Gopal M 8baba52636 Fix #5628 - Update test case to fix logic around return statements
Fixed test case to allow 5 or more 'return' statements
to be used in 'Waypoint: Chaining If Else Statements'
2016-01-01 04:42:07 +05:30
Peter Benjamin 7bb3f6c702 fix typo in chaining if/else statements Waypoint 2015-12-31 14:39:19 -08:00
SaintPeter 1e10f03e16 Add Tail or Display Functions where missing 2015-12-31 13:41:03 -08:00
Logan Tegman 2bd4e2eede Merge pull request #5652 from 0x0936/fix/issue-5065
Fix tests on Waypoint: Using typeof
2015-12-31 12:00:41 -08:00
Logan Tegman af018ed8bc Merge pull request #5657 from SaintPeter/fix/case-sensitivity
Improve Case Sensitivity Waypoint
2015-12-31 11:56:38 -08:00
Rex Schrader 53e8732576 Merge pull request #5650 from 0x0936/fix/issue-5583
Fix test on Waypoint: Concatenating Strings with Plus Operator
2015-12-31 11:20:38 -08:00
Rex Schrader f3a0f19f53 Merge pull request #5639 from smrajagopal/fix/5634_return_statement_text
Fixed bugs in return string and test cases in 'Else If' waypoint
2015-12-31 11:15:15 -08:00
SaintPeter 588c1e9eaf Improve Case Sensitivity Waypoint 2015-12-31 10:53:00 -08:00
Robert Richey 525ea67314 Fix tests on Waypoint: Using typeof
Tests are now more robust. typeof string accepts any string - empty or not - with either single or double quotes. typeof number accepts any number, including floating point. Refactored from editor.getValue().match to code.match() and removed flags gi, as they don't make sense in these tests. closes #5065
2015-12-31 09:01:40 -07:00
Robert Richey a3353bc7ca Fix test on Waypoint: Concatenating Strings with Plus Operator
Second test case now allows for either single or double quotes. Test uses verbose regex to help eliminate edge cases. closes #5583
2015-12-31 07:37:58 -07:00
Raja Gopal M 3d782cdfdd Fix #5634 - bugs in return string and test cases in 'Else If' waypoint
Updated the .json file to have correct return string in the
seed of 'Waypoint Challenge: Introduction to Else If Statements'
As well, corrected test case bugs in this commit
2015-12-31 19:30:13 +05:30
Dieter Daems 1627faf2f0 Fix stack trace error in javascript challenge
- added a additional check to make sure the function exists
2015-12-31 14:17:07 +01:00
augmt 7e3be9adea Display correct assertion in Basic JS Waypoint 85 2015-12-31 02:00:54 -05:00
Logan Tegman 7abe10afbd Merge pull request #5620 from SaintPeter/fix/construct-strings-with-variables
Allow Single Quotes in Construct Strings
2015-12-30 22:28:25 -08:00
SaintPeter 0aaec41357 Allow Single Quotes in Construct Strings 2015-12-30 22:13:20 -08:00
Logan Tegman 9eebcf21e7 Merge pull request #5613 from SaintPeter/fix/concat-description
Improve Concatenation Strings Descriptions
2015-12-30 22:09:19 -08:00
SaintPeter f42e583e3b Improve Concatenation Strings Descriptions 2015-12-30 22:03:49 -08:00
Eric Leung f895959b27 Fix vague variable names in Celsius to Fahrenheit 2015-12-30 21:20:30 -08:00
SaintPeter 069929b6f3 Improve Logical Or description 2015-12-30 19:54:18 -08:00
Logan Tegman 920ce53fa5 Merge pull request #5608 from SaintPeter/fix/word-blanks-description
Improve Word Blanks Descriptive Text
2015-12-30 19:40:17 -08:00
SaintPeter 83d11a2f74 Update Case Sensitivity Description 2015-12-30 19:33:00 -08:00
SaintPeter cabf9996c6 Improve Word Blanks Descriptive Text 2015-12-30 18:56:56 -08:00
Logan Tegman 5501e061f1 Merge pull request #5605 from SaintPeter/fix/change-mini-bonfires-to-waypoints
Change Mini-Bonfires back to Waypoints
2015-12-30 18:55:55 -08:00
SaintPeter f6a6e21944 Change Mini-Bonfires back to Waypoints 2015-12-30 17:57:15 -08:00
Rex Schrader 9f92181561 Merge pull request #5568 from wakqasahmed/fix/override-class-dec-by-id-attr
Fix Waypoint: Override Class Declarations by Styling ID Attributes #5446
2015-12-30 17:12:46 -08:00
Rex Schrader 8a5531431b Merge pull request #5592 from pkshreeman/fix-confusion-re-item
Made a minor adjustment in instruction
2015-12-30 17:11:35 -08:00
Rex Schrader ca76f7db0a Merge pull request #5597 from abhisekp/fix/access-object-prop
Fix Accessing Objects Properties with Bracket Notation output
2015-12-30 17:09:40 -08:00
Rex Schrader 2bad45a6b3 Merge pull request #5598 from abhisekp/fix/access-nested
Fix typo in Accessing Nested Objects in JSON
2015-12-30 17:08:43 -08:00
Rex Schrader 4dcd33776d Merge pull request #5600 from abhisekp/fix/testing-object-props
Fix typo in Testing Objects for Properties
2015-12-30 17:07:09 -08:00
Abhisek Pattnaik be1d8544e8 Fix typo in Testing Objects for Properties 2015-12-31 06:32:33 +05:30
Abhisek Pattnaik af82ea53d1 Fix typo in Accessing Nested Objects in JSON 2015-12-31 06:17:28 +05:30
Abhisek Pattnaik 0ea783e69a Fix Accessing Objects Properties with Bracket Notation output 2015-12-31 06:11:32 +05:30
Abhisek Pattnaik 44c9b92ca4 Fix Using Objects for Lookups description 2015-12-31 06:01:47 +05:30