mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2025-03-14 09:11:41 +01:00
11 lines
350 B
JavaScript
11 lines
350 B
JavaScript
describe("Functions suite test", function() {
|
|
it("$defined() test spec", function() {
|
|
var testVariable = undefined;
|
|
expect($defined(testVariable)).toBe(false);
|
|
testVariable = 1;
|
|
expect($defined(testVariable)).toBe(true);
|
|
testVariable = null;
|
|
expect($defined(testVariable)).toBe(false);
|
|
});
|
|
});
|