-
Notifications
You must be signed in to change notification settings - Fork 93
Nodeunit to Mocha Transition for Server Side Tests #126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
NodeJS 'assert' has been replace with chai 'assert'
@@ -12,39 +12,38 @@ | |||
// License for the specific language governing permissions and limitations | |||
// under the License. | |||
|
|||
(function() { | |||
var utils = require('../lib/utils'); | |||
var Async = require('../lib/async'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These whitespace changes look good to me, should we add .editorconfig
, .prettierrc
, and .prettierignore
to make sure these are consistent when others are developing in this repo as a followup task?
This is looking great, thanks so much for all the effort here @vmalaviya-splunk! Minor comment about following up with prettier and editorconfig rules for the repo in the future if you think that makes sense. |
All the server side nodeunit tests are migrated to mocha tests.
Functionality added to run an individual test file residing in a nested folder.
Functionality added to run individual test case or a test case containing a particular string.