3
votes
4answers
2k views

Javascript - assert?

Pretty simple question to which I couldn't find an answer - what does assert mean in javascript? I've seen something like: assert(function1() && function2() && function3(), "some ...
0
votes
4answers
81 views

Ensure that a condition is always true in JavaScript

In JavaScript, is it possible to test whether a condition remains true throughout a program's entire execution? Here, I want to ensure that the variable a is always divisible by 3, from the start of ...
3
votes
1answer
96 views

JavaScript contracts and assertions

This has bugged me for a while. I throw an exception on an assertion failure, but this is only helpful if I can actually catch the exception (in which case I alert the user). If I can't catch the ...
0
votes
3answers
96 views

How do I create and cache a DOM element that doesn't exist yet?

I'm writing an assert function. How do I cache #assert if it doesn't exist yet? function assert( outcome, description ) { if (!$('#assert').length) { $('body').append('<ul ...
0
votes
1answer
110 views

JsTestDriver: expected [object] was {…}

I'm using JsTestDriver to test, and develop, something in Javascript. I'm having, periodically, this kind of AssertError: expected [object] but was {...} Some other times, it could be: expected ...
0
votes
2answers
824 views

What is JavascriptMVC's assertEqual function?

I'm a total noob to JavascriptMVC so I'm going through the tutorials. But I have to say something that I'm sure is very simple is totally confusing me. In some of thier tutorials they reference a ...
-1
votes
1answer
359 views

v8 (javascript) String::New asserted

I work with v8 (google's javascript engine) recently. When the GC is running, String::New always trigger a assert at ASSERT(state_ != NEAR_DEATH)(global-handles.cc 237line). Does have some suggestion. ...
0
votes
0answers
215 views

Array stored in Mongo fails deep assert comparison to native javascript array with same length and values

I have a field in mongo defined with the mongoose ORM like so: state: {type: [Number], required: true } If I take a peek at a sample document with the mongo console, state looks like state: [ 1, ...
3
votes
5answers
4k views

Assertions in JavaScript

Extensively reading about various assertion frameworks in JavaScript. Is there any kind of de-facto/most common "standard" library/framework? When selecting one - which points are most worth noticing? ...
11
votes
6answers
6k views

Assertive programming with JavaScript

I know why assertive programming is good, so I want to use it with JavaScript. However, I don't want to show users error boxes, and it's unusual thing. Just ignore it and make them retry could be ...
8
votes
2answers
677 views

JavaScript anti-silent techniques to indicate failure

What would be a good way to report errors in JavaScript instead of relying on nulls, and undefineds when errors do occur and a function is unable to proceed forward. I can think of three approaches: ...