This commit is contained in:
Maddie Kreamer 2018-10-30 20:16:26 -06:00
Родитель 2f30d83972
Коммит bbcd376bd1
6 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -2,7 +2,7 @@
by [John Pankowicz](https://github.com/johnpankowicz)
This recipe shows how to use both the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension and the [C# for Visual Studio Code](https://github.com/OmniSharp/omnisharp-vscode) extention together to debug a C#/Typescript application generated by the [Angular AspNetCore.SpaTemplates](https://www.nuget.org/packages/Microsoft.AspNetCore.SpaTemplates/).
This recipe shows how to use both the [Debugger for Chrome](https://github.com/Microsoft/vscode-chrome-debug) extension and the [C# for Visual Studio Code](https://github.com/OmniSharp/omnisharp-vscode) extension together to debug a C#/Typescript application generated by the [Angular AspNetCore.SpaTemplates](https://www.nuget.org/packages/Microsoft.AspNetCore.SpaTemplates/).
## Prerequisites to install

Просмотреть файл

@ -86,7 +86,7 @@ This recipe shows how to debug a Python application using the VS Code extension
}
```
5. For basic Python debugging of files, you will only need the followinf configuration:
5. For basic Python debugging of files, you will only need the following configuration:
```json
{
// Use IntelliSense to learn about possible attributes.
@ -113,7 +113,7 @@ This recipe shows how to debug a Python application using the VS Code extension
## Start Debugging.
1. Open your Pythonn file in VS Code.
1. Open your Python file in VS Code.
2. Go to the Debug view, select the **Start Debugging** then press F5 or click the green play button.

Просмотреть файл

@ -1,7 +1,7 @@
const { add } = require('../lib/calc');
describe('When adding numbers', () => {
it('Shoud return correct result', () => {
it('Should return correct result', () => {
const result = add(1, 2);
expect(result).toEqual(3);
});

Просмотреть файл

@ -1,7 +1,7 @@
const { subtract } = require('../lib/calc');
describe('When subtracing numbers', () => {
it('Shoud return correct result', () => {
describe('When subtracting numbers', () => {
it('Should return correct result', () => {
const result = subtract(3, 2);
expect(result).toEqual(1);
});

Просмотреть файл

@ -2,7 +2,7 @@ const assert = require('chai').assert;
const { add } = require('../lib/calc');
describe('When adding numbers', () => {
it('Shoud return correct result', () => {
it('Should return correct result', () => {
const result = add(1, 2);
assert.equal(result, 3);
});

Просмотреть файл

@ -1,8 +1,8 @@
const assert = require('chai').assert;
const { subtract } = require('../lib/calc');
describe('When subtracing numbers', () => {
it('Shoud return correct result', () => {
describe('When subtracting numbers', () => {
it('Should return correct result', () => {
const result = subtract(3, 2);
assert.equal(result, 1);
});