Jasmine unit test doesn't like array.includes() method when used in Chutzpah / Visual Studio 2017 in C# ASP.Net testing JavaScript in razor viewsHow to Unit-Test JavaScript immediate functions with Jasmine / Chutzpah / JsTestDriverUnable to get jasmine-jquery fixtures to load in Visual Studio with Chutzpah, or even in browserVS 2012 Chutzpah Adapter and Jasmine Javascript unit testing integrationVisual Studio's Test Runner with Chutzpah won't recognize QUnit tests when using both Requirejs and knockoutjsVisual Studio 2013 doesn't discover unit testsJasmine Unit Tests displaying multiple times in Visual Studio 2012 Test ExplorerJasmine unit test fails when spying on a service methodJasmine test fails when run in Chutzpah but not in browserWhy mi jasmine spec fails TypeError: undefined is not a constructor (evaluating 'this.sortLayout.$('.toggle').removeProp('disabled')')?QUnit returns error in strict mode

Pre-1972 sci-fi short story or novel: alien(?) tunnel where people try new moves and get destroyed if they're not the correct ones

Character descriptions

What is wrong with this proof that symmetric matrices commute?

How Often Do Health Insurance Providers Drop Coverage?

Generate a Graeco-Latin square

Is open-sourcing the code of a webapp not recommended?

Do simulator games use a realistic trajectory to get into orbit?

How to construct an hbox with negative height?

Fixing obscure 8080 emulator bug?

A planet of ice and fire

Grover algorithm for a database search: where is the quantum advantage?

How can I tell the difference between unmarked sugar and stevia?

Can the poison from Kingsmen be concocted?

How to return a security deposit to a tenant

Why doesn't Adrian Toomes give up Spider-Man's identity?

How can this tool find out registered domains from an IP?

C++ Arduino IDE receiving garbled `char` from function

Soft question: Examples where lack of mathematical rigour cause security breaches?

Recommended tools for graphs and charts

Should an arbiter claim draw at a K+R vs K+R endgame?

SQL counting distinct over partition

Are there downsides to using std::string as a buffer?

What's up with this leaf?

Trapping Rain Water



Jasmine unit test doesn't like array.includes() method when used in Chutzpah / Visual Studio 2017 in C# ASP.Net testing JavaScript in razor views


How to Unit-Test JavaScript immediate functions with Jasmine / Chutzpah / JsTestDriverUnable to get jasmine-jquery fixtures to load in Visual Studio with Chutzpah, or even in browserVS 2012 Chutzpah Adapter and Jasmine Javascript unit testing integrationVisual Studio's Test Runner with Chutzpah won't recognize QUnit tests when using both Requirejs and knockoutjsVisual Studio 2013 doesn't discover unit testsJasmine Unit Tests displaying multiple times in Visual Studio 2012 Test ExplorerJasmine unit test fails when spying on a service methodJasmine test fails when run in Chutzpah but not in browserWhy mi jasmine spec fails TypeError: undefined is not a constructor (evaluating 'this.sortLayout.$('.toggle').removeProp('disabled')')?QUnit returns error in strict mode






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















When I run a Jasmine or QUnit test on a JavaScript function (in a C# ASP.Net project) that uses the array.includes() method (called on an instance of the array), I get an error message: 'Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'. I am using Chutzpah test runner to run the tests inside of Visual Studio Explorer. When I write the routine for the array includes method rather than rely on this abstraction, it works, so it seems to not like this method or know where its implementation is. I would prefer to use this method as I have read it is best practice to use it (for modern web browsers).



I have a work around for it in writing the includes routine myself, and I have looked to see if I need to include a reference to the array class (as this is likely an extension method maybe?), but I cant find how you would do this. It might also be a dependency that needs registering (although I am new to Jasmine / QUnit so don't know where this would go). I have updated compile settings for Jasmine in chutzpah.json settings file.



//Jasmine nor QUnit like this
function randomArrayOfIndexes() {
var randNumbArray = new Array(4);
var indexToAssign = Math.floor(Math.random() * Math.floor(4));
randNumbArray[0] = indexToAssign;

for (i = 1; i < randNumbArray.length; i++)
indexToAssign = Math.floor(Math.random() * Math.floor(4));
//while (arrayContains(randNumbArray, indexToAssign))
while (randNumbArray.includes(indexToAssign))
indexToAssign = Math.floor(Math.random() * Math.floor(4));

randNumbArray[i] = indexToAssign;


return randNumbArray;


//Jasmine and QUnit do like this

unction randomArrayOfIndexes() {
var randNumbArray = new Array(4);
var indexToAssign = Math.floor(Math.random() * Math.floor(4));
randNumbArray[0] = indexToAssign;

for (i = 1; i < randNumbArray.length; i++)
indexToAssign = Math.floor(Math.random() * Math.floor(4));
while (arrayContains(randNumbArray, indexToAssign))
//while (randNumbArray.includes(indexToAssign))
indexToAssign = Math.floor(Math.random() * Math.floor(4));

randNumbArray[i] = indexToAssign;


return randNumbArray;


// includes function I made myself
function arrayContains(arrayin, numberIn)
var i = arrayin.length;
while (i--) //takes one from i so highest index is accurate on first iteration
if (arrayin[i] === numberIn)
return true;


return false;



I would expect this routine to run within the test environment without having to write the method myself. I get the error: Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'.










share|improve this question




























    0















    When I run a Jasmine or QUnit test on a JavaScript function (in a C# ASP.Net project) that uses the array.includes() method (called on an instance of the array), I get an error message: 'Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'. I am using Chutzpah test runner to run the tests inside of Visual Studio Explorer. When I write the routine for the array includes method rather than rely on this abstraction, it works, so it seems to not like this method or know where its implementation is. I would prefer to use this method as I have read it is best practice to use it (for modern web browsers).



    I have a work around for it in writing the includes routine myself, and I have looked to see if I need to include a reference to the array class (as this is likely an extension method maybe?), but I cant find how you would do this. It might also be a dependency that needs registering (although I am new to Jasmine / QUnit so don't know where this would go). I have updated compile settings for Jasmine in chutzpah.json settings file.



    //Jasmine nor QUnit like this
    function randomArrayOfIndexes() {
    var randNumbArray = new Array(4);
    var indexToAssign = Math.floor(Math.random() * Math.floor(4));
    randNumbArray[0] = indexToAssign;

    for (i = 1; i < randNumbArray.length; i++)
    indexToAssign = Math.floor(Math.random() * Math.floor(4));
    //while (arrayContains(randNumbArray, indexToAssign))
    while (randNumbArray.includes(indexToAssign))
    indexToAssign = Math.floor(Math.random() * Math.floor(4));

    randNumbArray[i] = indexToAssign;


    return randNumbArray;


    //Jasmine and QUnit do like this

    unction randomArrayOfIndexes() {
    var randNumbArray = new Array(4);
    var indexToAssign = Math.floor(Math.random() * Math.floor(4));
    randNumbArray[0] = indexToAssign;

    for (i = 1; i < randNumbArray.length; i++)
    indexToAssign = Math.floor(Math.random() * Math.floor(4));
    while (arrayContains(randNumbArray, indexToAssign))
    //while (randNumbArray.includes(indexToAssign))
    indexToAssign = Math.floor(Math.random() * Math.floor(4));

    randNumbArray[i] = indexToAssign;


    return randNumbArray;


    // includes function I made myself
    function arrayContains(arrayin, numberIn)
    var i = arrayin.length;
    while (i--) //takes one from i so highest index is accurate on first iteration
    if (arrayin[i] === numberIn)
    return true;


    return false;



    I would expect this routine to run within the test environment without having to write the method myself. I get the error: Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'.










    share|improve this question
























      0












      0








      0








      When I run a Jasmine or QUnit test on a JavaScript function (in a C# ASP.Net project) that uses the array.includes() method (called on an instance of the array), I get an error message: 'Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'. I am using Chutzpah test runner to run the tests inside of Visual Studio Explorer. When I write the routine for the array includes method rather than rely on this abstraction, it works, so it seems to not like this method or know where its implementation is. I would prefer to use this method as I have read it is best practice to use it (for modern web browsers).



      I have a work around for it in writing the includes routine myself, and I have looked to see if I need to include a reference to the array class (as this is likely an extension method maybe?), but I cant find how you would do this. It might also be a dependency that needs registering (although I am new to Jasmine / QUnit so don't know where this would go). I have updated compile settings for Jasmine in chutzpah.json settings file.



      //Jasmine nor QUnit like this
      function randomArrayOfIndexes() {
      var randNumbArray = new Array(4);
      var indexToAssign = Math.floor(Math.random() * Math.floor(4));
      randNumbArray[0] = indexToAssign;

      for (i = 1; i < randNumbArray.length; i++)
      indexToAssign = Math.floor(Math.random() * Math.floor(4));
      //while (arrayContains(randNumbArray, indexToAssign))
      while (randNumbArray.includes(indexToAssign))
      indexToAssign = Math.floor(Math.random() * Math.floor(4));

      randNumbArray[i] = indexToAssign;


      return randNumbArray;


      //Jasmine and QUnit do like this

      unction randomArrayOfIndexes() {
      var randNumbArray = new Array(4);
      var indexToAssign = Math.floor(Math.random() * Math.floor(4));
      randNumbArray[0] = indexToAssign;

      for (i = 1; i < randNumbArray.length; i++)
      indexToAssign = Math.floor(Math.random() * Math.floor(4));
      while (arrayContains(randNumbArray, indexToAssign))
      //while (randNumbArray.includes(indexToAssign))
      indexToAssign = Math.floor(Math.random() * Math.floor(4));

      randNumbArray[i] = indexToAssign;


      return randNumbArray;


      // includes function I made myself
      function arrayContains(arrayin, numberIn)
      var i = arrayin.length;
      while (i--) //takes one from i so highest index is accurate on first iteration
      if (arrayin[i] === numberIn)
      return true;


      return false;



      I would expect this routine to run within the test environment without having to write the method myself. I get the error: Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'.










      share|improve this question














      When I run a Jasmine or QUnit test on a JavaScript function (in a C# ASP.Net project) that uses the array.includes() method (called on an instance of the array), I get an error message: 'Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'. I am using Chutzpah test runner to run the tests inside of Visual Studio Explorer. When I write the routine for the array includes method rather than rely on this abstraction, it works, so it seems to not like this method or know where its implementation is. I would prefer to use this method as I have read it is best practice to use it (for modern web browsers).



      I have a work around for it in writing the includes routine myself, and I have looked to see if I need to include a reference to the array class (as this is likely an extension method maybe?), but I cant find how you would do this. It might also be a dependency that needs registering (although I am new to Jasmine / QUnit so don't know where this would go). I have updated compile settings for Jasmine in chutzpah.json settings file.



      //Jasmine nor QUnit like this
      function randomArrayOfIndexes() {
      var randNumbArray = new Array(4);
      var indexToAssign = Math.floor(Math.random() * Math.floor(4));
      randNumbArray[0] = indexToAssign;

      for (i = 1; i < randNumbArray.length; i++)
      indexToAssign = Math.floor(Math.random() * Math.floor(4));
      //while (arrayContains(randNumbArray, indexToAssign))
      while (randNumbArray.includes(indexToAssign))
      indexToAssign = Math.floor(Math.random() * Math.floor(4));

      randNumbArray[i] = indexToAssign;


      return randNumbArray;


      //Jasmine and QUnit do like this

      unction randomArrayOfIndexes() {
      var randNumbArray = new Array(4);
      var indexToAssign = Math.floor(Math.random() * Math.floor(4));
      randNumbArray[0] = indexToAssign;

      for (i = 1; i < randNumbArray.length; i++)
      indexToAssign = Math.floor(Math.random() * Math.floor(4));
      while (arrayContains(randNumbArray, indexToAssign))
      //while (randNumbArray.includes(indexToAssign))
      indexToAssign = Math.floor(Math.random() * Math.floor(4));

      randNumbArray[i] = indexToAssign;


      return randNumbArray;


      // includes function I made myself
      function arrayContains(arrayin, numberIn)
      var i = arrayin.length;
      while (i--) //takes one from i so highest index is accurate on first iteration
      if (arrayin[i] === numberIn)
      return true;


      return false;



      I would expect this routine to run within the test environment without having to write the method myself. I get the error: Undefined is not a constructor when evaluating arrayName.includes(dataToFind)'.







      javascript c# asp.net jasmine qunit






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 17:19









      P.TreadsP.Treads

      183




      183






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326430%2fjasmine-unit-test-doesnt-like-array-includes-method-when-used-in-chutzpah-v%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326430%2fjasmine-unit-test-doesnt-like-array-includes-method-when-used-in-chutzpah-v%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript