mirror of
https://github.com/scratchfoundation/scratch-gui.git
synced 2024-11-25 16:26:20 +08:00
3c6bfe0607
Adding this caught a couple of important things: - The sound integration tests have a `.only` in them - The project-saver-hoc tests had two tests with the same description, causing possible confusion if that test broke
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
module.exports = {
|
|
extends: ['scratch/react', 'scratch/es6', 'plugin:jest/recommended'],
|
|
env: {
|
|
browser: true,
|
|
jest: true
|
|
},
|
|
plugins: ['jest'],
|
|
rules: {
|
|
'react/prop-types': 0
|
|
}
|
|
};
|