mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Rename test files
This commit is contained in:
parent
e696dc4d5f
commit
a65589a5fb
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
@ -7,7 +7,7 @@ grunt && grunt watch
|
|||||||
|
|
||||||
### Rerun tests on source change
|
### Rerun tests on source change
|
||||||
```
|
```
|
||||||
npm jest
|
npm run jest
|
||||||
```
|
```
|
||||||
or
|
or
|
||||||
```
|
```
|
||||||
|
@ -13,7 +13,7 @@ module.exports = {
|
|||||||
"roots": [
|
"roots": [
|
||||||
"<rootDir>/public"
|
"<rootDir>/public"
|
||||||
],
|
],
|
||||||
"testRegex": "(\\.|/)(jest)\\.(jsx?|tsx?)$",
|
"testRegex": "(\\.|/)(test)\\.(jsx?|tsx?)$",
|
||||||
"moduleFileExtensions": [
|
"moduleFileExtensions": [
|
||||||
"ts",
|
"ts",
|
||||||
"tsx",
|
"tsx",
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
var webpack = require('webpack');
|
|
||||||
var path = require('path');
|
|
||||||
var webpackTestConfig = require('./scripts/webpack/webpack.test.js');
|
|
||||||
|
|
||||||
module.exports = function(config) {
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
config.set({
|
|
||||||
frameworks: ['mocha', 'expect', 'sinon'],
|
|
||||||
|
|
||||||
// list of files / patterns to load in the browser
|
|
||||||
files: [
|
|
||||||
{ pattern: 'public/test/index.ts', watched: false }
|
|
||||||
],
|
|
||||||
|
|
||||||
preprocessors: {
|
|
||||||
'public/test/index.ts': ['webpack', 'sourcemap'],
|
|
||||||
},
|
|
||||||
|
|
||||||
webpack: webpackTestConfig,
|
|
||||||
webpackMiddleware: {
|
|
||||||
stats: 'minimal',
|
|
||||||
},
|
|
||||||
|
|
||||||
// list of files to exclude
|
|
||||||
exclude: [],
|
|
||||||
reporters: ['dots'],
|
|
||||||
port: 9876,
|
|
||||||
colors: true,
|
|
||||||
logLevel: config.LOG_INFO,
|
|
||||||
autoWatch: true,
|
|
||||||
browsers: ['PhantomJS'],
|
|
||||||
captureTimeout: 20000,
|
|
||||||
singleRun: true,
|
|
||||||
// autoWatchBatchDelay: 1000,
|
|
||||||
// browserNoActivityTimeout: 60000,
|
|
||||||
});
|
|
||||||
|
|
||||||
};
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user