* Chore: use jest without grunt
* Run no-focus-convey-tests and no-only-tests as well
* Update lib.star test-backend script with no-focus test to run first
* Lets see a failing test
* Revert "Lets see a failing test"
This reverts commit cb6c6ed67d.
* Update no-focus-convey test to a script
* Update scripts/lib.star
Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
* Update drone.yml
Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
module.exports = function(config, grunt) {
|
|
'use strict';
|
|
|
|
return {
|
|
eslint: {
|
|
command: 'yarn lint',
|
|
},
|
|
typecheckPackages: {
|
|
command: 'yarn packages:typecheck',
|
|
},
|
|
typecheckRoot: {
|
|
command: 'yarn typecheck',
|
|
},
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
|
};
|
|
};
|