Skip to content

Commit 6b2e6c2

Browse files
committed
chore: sync infrastructure changes
1 parent 2dcb870 commit 6b2e6c2

File tree

3 files changed

+1
-128
lines changed

3 files changed

+1
-128
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -48,28 +48,6 @@ If you don't use a topic branch, we may ask you to re-do your pull request on a
4848
The "production" branch of the Kendo UI Core repository is for production maintenance code only. Never create a pull request from the production branch. Always create a branch for your work from the "master" branch.
4949
This will facilitate easier pull request management for the continuous work that is done in the master branch. If the issue is a bug fix that should be back ported to a maintenance branch, the core maintainers will cherry-pick it.
5050

51-
### 3. Include tests describing the bug or feature
52-
53-
Kendo UI uses [Mocha](https://www.npmjs.com/package/mocha) for a test framework and [karma](http://karma-runner.github.io/) as the test runner. You may browse the `tests` directory to get a better idea of the structure and conventions used.
54-
55-
To run the tests, execute the following command:
56-
57-
```
58-
gulp tests
59-
```
60-
61-
To run the tests for a single widget, pass a `tests` option:
62-
63-
```
64-
gulp tests --tests="tests/listview/**.*.js"
65-
```
66-
67-
By default, the tests run in Chrome. Other browser may be used using the `browser` option:
68-
69-
```
70-
gulp tests --browser=Firefox
71-
```
72-
7351
#### (optional) Squash your commits
7452

7553
When you've completed your work on a topic branch, you may squash your work down into fewer commits to make the merge process easier. For information on squashing via an interactive rebase, see [the rebase documentation on GitHub](https://help.github.com/articles/interactive-rebase)

build/gulp/tasks/karma.js

Lines changed: 0 additions & 101 deletions
This file was deleted.

gulpfile.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ const buffer = require('vinyl-buffer');
2323

2424
var kendoVersion = require("./build/gulp/kendo-version");
2525

26-
requireDir('./build/gulp/tasks');
27-
2826
var makeSourceMaps = !argv['skip-source-maps'];
2927

3028
let HELPERS = {
@@ -152,9 +150,7 @@ gulp.task("custom", function() {
152150

153151
gulp.task('build', gulp.series('scripts'));
154152

155-
gulp.task('tests', gulp.series(['karma-mocha']));
156-
157-
gulp.task('ci', gulp.series(['build', 'karma-ci']));
153+
gulp.task('ci', gulp.series(['build']));
158154

159155
function compileModulesScripts() {
160156
return HELPERS.execute('npm run scripts:modules');

0 commit comments

Comments
 (0)