Skip to content

Commit

Permalink
add a couple more extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunil Pai committed Dec 22, 2020
1 parent 9e6dfac commit acc11e9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"recommendations": ["dbaeumer.vscode-eslint"]
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"wayou.vscode-todo-highlight"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('create-modular-react-app', () => {
├─ .eslintignore #1ugsijf
├─ .gitignore #1ugsijf
├─ .vscode
│ ├─ extensions.json #6p4679
│ ├─ extensions.json #1i4584r
│ └─ settings.json #xncm1d
├─ README.md #1nksyzj
├─ modular
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"recommendations": ["dbaeumer.vscode-eslint"]
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"wayou.vscode-todo-highlight"
]
}
5 changes: 5 additions & 0 deletions packages/modular-scripts/src/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ describe('modular-scripts', () => {
});

it('can start an app', async () => {
// this leaves habing processes on local environments
// so we're disabling it for now. Still runs on CI though.
if (!process.env.CI) {
return;
}
let browser: puppeteer.Browser | undefined;
let devServer: DevServer | undefined;
try {
Expand Down
4 changes: 2 additions & 2 deletions packages/tree-view-for-tests/src/__tests__/tree.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ test('it can serialise a folder', () => {
├─ package.json
├─ src
│ ├─ __tests__
│ │ └─ index.test.ts #6koefy
│ │ └─ index.test.ts #1lu3g5f
│ ├─ cli.ts #gcx3cm
│ └─ index.ts #un0l9d
└─ template
├─ .editorconfig #1p4gvuw
├─ .vscode
│ ├─ extensions.json #6p4679
│ ├─ extensions.json #1i4584r
│ └─ settings.json #xncm1d
├─ README.md #1nksyzj
├─ gitignore #1ugsijf
Expand Down

0 comments on commit acc11e9

Please sign in to comment.