mirror of
https://github.com/wazuh/wazuh-dashboard.git
synced 2025-12-10 00:31:06 -06:00
* Replaces `sass-lint` with `stylelint` * Introduces standard scss rules from stylelint with only a few modifications. * `yarn lint` now runs `yarn lint:style` instead of `yarn lint:sass`. * Many of the files were updated with `yarn lint:style --fix`, but some of them had to be manually updated with overrides to adhere to the newly-introduced rules from the stylelint configuration. * Includes a couple fixes such as fixing the class selector for `osdnSuggestionItem--value .osdSuggestionItem__text`. Resolves #551 Resolves #1139 Resolves #1151 Resolves #1152 Resolves #1154 Signed-off-by: Tommy Markley <markleyt@amazon.com> * fix(Style): Fixes flex style Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * fix(lint): Fixes empty comment lint issue Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * chore: rebase and updates yarn.lock Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> Co-authored-by: Tommy Markley <markleyt@amazon.com>
110 lines
3.1 KiB
JavaScript
110 lines
3.1 KiB
JavaScript
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* The OpenSearch Contributors require contributions made to
|
|
* this file be licensed under the Apache-2.0 license or a
|
|
* compatible open source license.
|
|
*
|
|
* Any modifications Copyright OpenSearch Contributors. See
|
|
* GitHub history for details.
|
|
*/
|
|
|
|
/*
|
|
* Licensed to Elasticsearch B.V. under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
import { run } from '../utilities/visual_regression';
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.registerTask(
|
|
'test:visualRegression:buildGallery',
|
|
'Compare screenshots and generate diff images.',
|
|
function () {
|
|
const done = this.async();
|
|
run(done);
|
|
}
|
|
);
|
|
|
|
grunt.registerTask('test:quick', [
|
|
'checkPlugins',
|
|
'run:mocha',
|
|
'run:functionalTests',
|
|
'test:jest',
|
|
'test:jest_integration',
|
|
'test:projects',
|
|
'run:apiIntegrationTests',
|
|
]);
|
|
|
|
grunt.registerTask('test:mochaCoverage', ['run:mochaCoverage']);
|
|
|
|
grunt.registerTask('test', (subTask) => {
|
|
if (subTask) grunt.fail.fatal(`invalid task "test:${subTask}"`);
|
|
|
|
grunt.task.run(
|
|
[
|
|
!grunt.option('quick') && 'run:eslint',
|
|
!grunt.option('quick') && 'run:stylelint',
|
|
!grunt.option('quick') && 'run:checkTsProjects',
|
|
!grunt.option('quick') && 'run:checkDocApiChanges',
|
|
!grunt.option('quick') && 'run:typeCheck',
|
|
!grunt.option('quick') && 'run:i18nCheck',
|
|
'run:checkFileCasing',
|
|
'run:licenses',
|
|
'test:quick',
|
|
].filter(Boolean)
|
|
);
|
|
});
|
|
|
|
grunt.registerTask('quick-test', ['test:quick']); // historical alias
|
|
|
|
grunt.registerTask('test:projects', function () {
|
|
const done = this.async();
|
|
runProjectsTests().then(done, done);
|
|
});
|
|
|
|
function runProjectsTests() {
|
|
const serverCmd = {
|
|
cmd: 'yarn',
|
|
args: [
|
|
'osd',
|
|
'run',
|
|
'test',
|
|
'--exclude',
|
|
'opensearch-dashboards',
|
|
'--oss',
|
|
'--skip-opensearch-dashboards-plugins',
|
|
],
|
|
opts: { stdio: 'inherit' },
|
|
};
|
|
|
|
return new Promise((resolve, reject) => {
|
|
grunt.util.spawn(serverCmd, (error, result, code) => {
|
|
if (error || code !== 0) {
|
|
const error = new Error(`projects tests exited with code ${code}`);
|
|
grunt.fail.fatal(error);
|
|
reject(error);
|
|
return;
|
|
}
|
|
|
|
grunt.log.writeln(result);
|
|
resolve();
|
|
});
|
|
});
|
|
}
|
|
};
|