-
-
Notifications
You must be signed in to change notification settings - Fork 196
Project service integration tests and unit tests for platform service #108
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
Conversation
@@ -0,0 +1,6 @@ | |||
interface IProjectIntegrationTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really need this interface? What is the need for this abstraction in the tests? 😄
34025a8
to
9308153
Compare
@@ -1,6 +1,6 @@ | |||
interface INodePackageManager { | |||
getCacheRootPath(): IFuture<string>; | |||
addToCache(packageName: string): IFuture<void>; | |||
addToCache(ppackageName: string, version: string): IFuture<void>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like the first parameter is mis-spelled: ppackage
It looks like tests do not complete successfully under Windows |
@@ -1,33 +1,189 @@ | |||
/// <reference path=".d.ts" /> | |||
|
|||
import yok = require('../lib/common/yok'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing "use strict"; for turning on strict mode
Test FAILed. |
👍 |
Project service integration tests and unit tests for platform service
No description provided.