Skip to content

Commit

Permalink
yaxis.reversed implemented - fixes #382; removed customShapes on bars
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Mar 10, 2019
1 parent e36ba68 commit 3504f01
Show file tree
Hide file tree
Showing 18 changed files with 358 additions and 386 deletions.
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
]
],
plugins: ['@babel/plugin-proposal-class-properties'],
ignore: ['build/*.js', 'dist/*.js', 'samples/**/*.js'],
ignore: ['build/*.js', 'samples/**/*.js'],
env: {
test: {
presets: [
Expand Down
19 changes: 8 additions & 11 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
// collectCoverageFrom: null,

// The directory where Jest should output its coverage files
coverageDirectory: "coverage",
coverageDirectory: 'coverage',

// An array of regexp pattern strings used to skip coverage collection
// coveragePathIgnorePatterns: [
Expand Down Expand Up @@ -83,7 +83,7 @@ module.exports = {
// notifyMode: "always",

// A preset that is used as a base for Jest's configuration
preset: "jest-puppeteer",
preset: 'jest-puppeteer',

// Run tests from one or more projects
// projects: null,
Expand Down Expand Up @@ -124,7 +124,7 @@ module.exports = {
// snapshotSerializers: [],

// The test environment that will be used for testing
testEnvironment: "jest-environment-jsdom",
testEnvironment: 'jest-environment-jsdom',

// Options that will be passed to the testEnvironment
// testEnvironmentOptions: {},
Expand All @@ -133,16 +133,13 @@ module.exports = {
// testLocationInResults: false,

// The glob patterns Jest uses to detect test files
testMatch: [
"**/tests/**/*.js?(x)",
"**/?(*.)+(spec|test).js?(x)"
],
testMatch: ['**/tests/**/*.js?(x)', '**/?(*.)+(spec|test).js?(x)'],

// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
testPathIgnorePatterns: [
"/node_modules/",
"/tests/unit/data/",
"/tests/unit/utils/"
'/node_modules/',
'/tests/unit/data/',
'/tests/unit/utils/'
],

// The regexp pattern Jest uses to detect test files
Expand Down Expand Up @@ -182,4 +179,4 @@ module.exports = {

// Whether to use watchman for file crawling
// watchman: true,
};
}
Loading

0 comments on commit 3504f01

Please sign in to comment.