Skip to content
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

can't get evergreen to run tests #89

Open
kenirwin opened this issue Mar 28, 2017 · 0 comments
Open

can't get evergreen to run tests #89

kenirwin opened this issue Mar 28, 2017 · 0 comments
Assignees

Comments

@kenirwin
Copy link

Hi -- I'm trying to get my first Evergreen installation to run with a simple test, and I'm stuck. I hope you can help.

When I got to 127.0.0.1/evergreen, I can see my test, but when I click "Run", I just get a swirly icon as if it's waiting for something to load.
evergreen-coffee

Here's what I've done:
I've installed Evergreen 1.2.0, and the rake -T spec returns:
rake spec:javascripts # Run JavaScript specs via Evergreen

Following along with the CodeSchool screencast on Jasmine/CoffeeScript testing with Evergreen:
https://www.codeschool.com/screencasts/testing-coffeescript-with-jasmine
I wrote a single test in spec/javascripts/demo_spec.js:
myApp = {}
myApp.Calculator = {
add: (a,b) -> a + b
}

describe 'A Calculator', ->
it 'should add two numbers', ->
result = myApp.Calculator.add(2,3)
expect(result).toEqual(5)

I ran 'evergreen serve'
Went to 127.0.0.1/evergreen and clicked 'Run', and all I get is the spinning icon, with no tests run.

Do you have any suggestions about what I need to do to get a test to run?

Thanks!

@abepetrillo abepetrillo self-assigned this Jun 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants