Skip to content

Chore/minor updates #2275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/modules/IDE/reducers/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const initialState = {
autorefresh: false,
language: 'en-US',
autocloseBracketsQuotes: true,
autocompleteHinter: true
autocompleteHinter: false
};

const preferences = (state = initialState, action) => {
Expand Down
2 changes: 1 addition & 1 deletion client/testData/testReduxStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const initialTestState = {
autorefresh: false,
language: 'en-US',
autocloseBracketsQuotes: true,
autocompleteHinter: true
autocompleteHinter: false
},
user: {
email: 'happydog@example.com',
Expand Down
2 changes: 1 addition & 1 deletion client/testData/testServerResponses.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const userResponse = {
autorefresh: false,
language: 'en-US',
autocloseBracketsQuotes: true,
autocompleteHinter: true
autocompleteHinter: false
},
apiKeys: [],
verified: 'verified',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build:client": "cross-env NODE_ENV=production webpack --config webpack/config.prod.js",
"build:server": "cross-env NODE_ENV=production webpack --config webpack/config.server.js",
"build:examples": "cross-env NODE_ENV=production webpack --config webpack/config.examples.js",
"test": "jest --coverage",
"test": "jest",
"test:ci": "npm run lint && npm run test",
"fetch-examples": "cross-env NODE_ENV=development node ./server/scripts/fetch-examples.js",
"fetch-examples-gg": "cross-env NODE_ENV=development node ./server/scripts/fetch-examples-gg.js",
Expand Down