Giter VIP home page Giter VIP logo

Comments (2)

mmkumaran avatar mmkumaran commented on May 30, 2024 1

hi Sriv,

thanks for your suggestion, adding done(e) to the promise catch and re-ording assert and done() has solved the issue. below is the working code..

below is the working example code.
gauge.step('User can get latest plan - failing', function(done) {
setTimeout(function() {
try {
var driver = new Driver.Driver('http://localhost');
driver
.checkLatestPlan()
.then(res => {
assert.equal(true, false);
done();
})
.catch(err => {
done(err);
});
} catch (e) {
done(e);
}
}, 1000);
});

Thanks,
Muthu

from gauge-js.

sriv avatar sriv commented on May 30, 2024

You seem to be passing the assertion error to the console and that isn't getting bubbled to Gauge.

Something like this should throw the assertion error:

Spec

Sample
=====

Vowel Definition
----------------

* Vowels in English language are "aeiou".

Implementation

var assert = require("assert");

var vowels = ["a", "e", "i", "o", "u"];

var vowelPromise = function(){
  return new Promise((resolve, reject) =>{
    if(vowels)
      resolve(vowels);
    else
      reject();
  })
}

gauge.step("Vowels in English language are <vowels>.", function(vowelsGiven, done) {
  return vowelPromise().then(
    (v) =>  assert.equal("not vowels", v.join(""))
  ).catch((e) => done(e));
});

from gauge-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.