Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resharper jasmine javascript tests: "Inconclusive test run" error

Here is the test:

myview-model.specs.js:

describe('Total truth', function() {
    it('true', function() {
        expect(true).toBe(true);
    });
});

When I run Resharper 9 it fails with "Inconclusive: Test not run" for Total truth when it is with phantomjs.exe

like image 695
Artyom Avatar asked Nov 09 '22 18:11

Artyom


1 Answers

In case someone comes here the problem was not in Visual Studio or Resharper but the phantomjs had an error:

> C:\PhantomJS\bin\phantomjs.exe
Auto configuration failed
11888:error:02001015:system library:fopen:Is a directory:.\crypto\bio\bss_file.c:169:fopen('F:\development\openssl\!BUILD/ssl/openssl.cnf','rb')
11888:error:2006D002:BIO routines:BIO_new_file:system lib:.\crypto\bio\bss_file.c:174:
11888:error:0E078002:configuration file routines:DEF_LOAD:system lib:.\crypto\conf\conf_def.c:199:

So after pointing to correct phantomjs it works.

like image 74
Artyom Avatar answered Jan 03 '23 01:01

Artyom