-
Notifications
You must be signed in to change notification settings - Fork 358
NTVS 1.1 Manual Test Matrix
-
Windows versions:
-
Windows 7
-
Windows 8.1
-
Windows 10
-
Install Visual Studio, select custom settings, and make sure the Web Tools component is checked during the install.
-
Visual Studio 2015 + latest updates 1. Community 2. Enterprise (and Pro) 3. Express for Web
-
Visual Studio 2013 + latest updates 1. Community 2. Express for Web 3. Ultimate (and Pro, Premium)
-
Visual Studio 2012 + latest updates 1. Ultimate (and Pro, Premium)
-
Language settings
-
English VS on English Windows
-
Chinese VS on English Windows
-
German VS on English Windows
-
English VS on Chinese Windows
-
Chinese VS on Chinese Windows
-
English VS on German Windows
-
German VS on English Windows
-
TypeScript extension [optional, but required for TypeScript-based projects]:
-
Visual Studio 2015: http://download.microsoft.com/download/6/D/8/6D8381B0-03C1-4BD2-AE65-30FF0A4C62DA/TS1.6.2-D14OOB.23313.00/TypeScript_Full.exe
-
Visual Studio 2013: http://download.microsoft.com/download/4/4/3/443F86B7-A89F-48E6-AC96-0AAC2A910A29/TS1.6.2-VUOOB.40914.00/TypeScript_Dev12.exe
-
Visual Studio 2012: https://visualstudiogallery.msdn.microsoft.com/ac357f1e-9847-46ac-a4cf-520325beaec1
-
Node.js Tools for Visual Studio (NTVS)
-
Visual Studio 2015: https://github.com/Microsoft/nodejstools/releases/download/v1.1.Dev-9.17.2015/NTVS.Dev.2015-09-17.VS.2015.msi
-
Visual Studio 2013: https://github.com/Microsoft/nodejstools/releases/download/v1.1.Dev-9.17.2015/NTVS.Dev.2015-09-17.VS.2013.msi
-
Visual Studio 2012: https://github.com/Microsoft/nodejstools/releases/download/v1.1.Dev-9.17.2015/NTVS.Dev.2015-09-17.VS.2012.msi
-
Install Node.js (test all versions)
- Node.js v5.0.0 x86: https://nodejs.org/dist/v5.0.0/node-v5.0.0-x86.msi
- Node.js v5.0.0 x64: https://nodejs.org/dist/v5.0.0/node-v5.0.0-x64.msi
- Node.js v4.2.2 x86: https://nodejs.org/dist/v4.2.2/node-v4.2.2-x86.msi
- Node.js v4.2.2 x64: https://nodejs.org/dist/v4.2.2/node-v4.2.2-x64.msi
- Node.js v0.12.7 x86: https://nodejs.org/dist/v0.12.7/node-v0.12.7-x86.msi
- Node.js v0.12.7 x64: https://nodejs.org/dist/v0.12.7/x64/node-v0.12.7-x64.msi
- Install Azure Tools [optional, but required for web publishing support]
- Azure Tools for VS 2015: http://go.microsoft.com/fwlink/?LinkId=534216
- Azure Tools for VS 2013: http://go.microsoft.com/fwlink/p/?linkid=323510
- Azure Tools for VS 2012: http://go.microsoft.com/fwlink/p/?linkid=323511
- [OPTIONAL] Other extensions
- Web Essentials 1. VS 2015: https://visualstudiogallery.msdn.microsoft.com/ee6e6d8c-c837-41fb-886a-6b50ae2d06a2 2. VS 2013: http://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361 3. VS 2012: http://visualstudiogallery.msdn.microsoft.com/07d54d12-7133-4e15-becb-6f451ea3bea6
- ReSharper: https://www.jetbrains.com/resharper/
Use the following Templates:
- Create a new Starter Azure Node.js Express 3 Starter Project (JavaScript) in c:\src using the project template in Node.js -> JavaScript
- Create a new Starter Azure Node.js Express 3 Starter Project (TypeScript) in c:\src using the project template in Node.js -> TypeScript
If you are testing io.js follow the "Configuring your project to use io.js" steps to configure your project:
Walk through these steps with both templates
- Wait for
npm install
to finish executing in the background (see details in the Output npm pane) - Set a breakpoint in app.js at the line (or app.ts):
var app = express()
- Set a breakpoint in routes\index.js (or routes\index.ts) at the line that begins with
res.render('index'
- F5 to start debugging
- Ensure the browser launches (http://localhost:1337)
- Ensure both breakpoints are hit
- Ensure the url loads successfully
- Walk through the “Profiling” and “Start your profiling session” sections in the Profiling docs, and verify things look as they do in the screenshots
- Walk through the “Browsing/Installing new npm packages in the GUI” section
- https://github.com/Microsoft/nodejstools/wiki/Npm-Integration#browsinginstalling-new-npm-packages-in-the-gui
- Try different VS themes, and make sure things are readable and nothing looks out of place.
- Walk through the Test Explorer documentation:
- Browser/Node.js-side editing
- Switch to
Full Intellisense
for Node. - Create a new directory named “hello”, and right click to add a new javascript item “item1.js” to the directory
- Verify that the directory display name changes to “hello (node)”
- Verify that Ctrl + Space in item.js produces a completions list with “process” in it.
- Right click the directory, and select “Set as Content (Browser code)”
- Verify that the directory display name changes to “hello (browser)”
- Verify that the build action of the item.js file is now set to “Content”
- Add a new javascript file, “item2.js” to the directory, by right clicking the directory and using “Add New Item”
- Verify that the directory name is still set to “hello (browser”)
- Ctrl + space in the “item2.js” file that has opened, and verify that “document” appears in the completions list
- F2 to change the name of the directory, and verify that the edit label is “hello”
- Type a new directory name - “goodbye”
- Verify that the name of the directory is “goodbye (browser)”
- Switch to
- Right click the project, Add new item, select the “Dockerfile” item template, and verify that the file is generated successfully.
- Interactive window
- Open the Node.js Interactive Window using Ctrl+K, N
- Run
.npm install azure --save-dev
- Verify that the output is readable and doesn’t include any odd characters once the command finishes executing
- Verify that a new entry has appeared in the
npm > dev
node in Solution Explorer and there are no errors/warnings