Skip to content
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

Ignore #35673

Closed
wants to merge 1 commit into from
Closed

Ignore #35673

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* globals module, process, require */
'use strict';

Check warning on line 2 in Gruntfile.js

View workflow job for this annotation

GitHub Actions / Lint Javascript

'use strict' is unnecessary inside of modules
module.exports = function (grunt) {
var headless = require('mocha-headless-chrome'),
_ = require('lodash'),
Expand Down Expand Up @@ -33,6 +33,7 @@
'notifications/bootstrap5',
'reports_core/choiceListUtils',
'locations',
'reports',
'userreports',
'cloudcare',
'cloudcare/form_entry',
Expand Down Expand Up @@ -91,7 +92,7 @@
error && grunt.log.write(error));
}
fs.writeFile(filePath, JSON.stringify(data.coverage), { flag: 'w+' }, error =>
error && grunt.log.write(error)

Check warning on line 95 in Gruntfile.js

View workflow job for this annotation

GitHub Actions / Lint Javascript

Missing trailing comma
);
}
finishedTests.push(currentApp);
Expand All @@ -99,7 +100,7 @@
_.without(queuedTests, currentApp),
taskPromise,
finishedTests,
failures

Check warning on line 103 in Gruntfile.js

View workflow job for this annotation

GitHub Actions / Lint Javascript

Missing trailing comma
);
});
};
Expand Down Expand Up @@ -134,7 +135,7 @@
var testStatement = "Running tests: " + paths.join(', ');
grunt.log.writeln(testStatement.bold.green);
runTest(paths, this.async());
}

Check warning on line 138 in Gruntfile.js

View workflow job for this annotation

GitHub Actions / Lint Javascript

Missing trailing comma
);

grunt.registerTask('list', 'Lists all available apps to test', function () {
Expand Down
Loading