-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Using vscode unit tests environment on travis build system. #779
Labels
*question
Issue represents a question, should be posted to StackOverflow (VS Code)
Milestone
Comments
fforjan
changed the title
Using vscode unit tets environment on travis build system.
Using vscode unit tests environment on travis build system.
Nov 28, 2015
alexdima
added
the
*question
Issue represents a question, should be posted to StackOverflow (VS Code)
label
Nov 30, 2015
👍 same question |
Planned for next release and we make sure its documented! |
Already used pre3 last week and it's working fine ;) |
Great :) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I all, I'm currently playing with VSC extensions and create a very simple one in typescript as learning experience about managing nuget packages for project.json - nuget4code, https://github.com/fforjan/nuget4code.
When learning, I'm always trying to do a full slice, including unit testing and build environment.
As I'm using GitHub, I've also link it to the Travis build system.
My npm test action is currently configure compile only, so I can catch build error which could have been missed on my computer (more likely none ;))
I got some unit tests working on my computer, they are really unit tests, I don't trigger any UI actions or other things, but they are doing import * as vscode from "vscode", use some vscode.Uri and thus require a vscode environment setup to run.
Do you have any idea how to configure Travis to be able to run unit tests ?
The text was updated successfully, but these errors were encountered: