From 86a9e0db6a64654f625e65f6b31be21a601b8e56 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 11 Mar 2014 02:36:10 -0400 Subject: [PATCH] JSHint assertions.js Mark all functions as exported --- .jshintignore | 1 - test/javascripts/helpers/assertions.js | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintignore b/.jshintignore index 62756bbfb..39fa66750 100644 --- a/.jshintignore +++ b/.jshintignore @@ -8,6 +8,5 @@ lib/javascripts/moment.js lib/javascripts/moment_locale/ public/javascripts/ spec/phantom_js/smoke_test.js -test/javascripts/helpers/assertions.js test/javascripts/test_helper.js vendor/ diff --git a/test/javascripts/helpers/assertions.js b/test/javascripts/helpers/assertions.js index 533a6b9dc..fdba18ca3 100644 --- a/test/javascripts/helpers/assertions.js +++ b/test/javascripts/helpers/assertions.js @@ -1,3 +1,4 @@ +/* exported exists, count, present, blank, containsInstance, not */ // Test helpers function exists(selector) { return !!count(selector);