how to write angular 6 unit testing for if condition The 2019 Stack Overflow Developer Survey Results Are InHow should I unit test threaded code?How do I test a private function or a class that has private methods, fields or inner classes?Unit Testing C CodeIs Unit Testing worth the effort?Unit testing code with a file system dependencyJavaScript unit test tools for TDDWhat is Unit test, Integration Test, Smoke test, Regression Test?Running unittest with typical test directory structureWriting unit tests in Python: How do I start?“Error: No provider for router” while writing Karma-Jasmine unit test cases

writing variables above the numbers in tikz picture

Does HR tell a hiring manager about salary negotiations?

How to type a long/em dash `—`

"as much details as you can remember"

How to support a colleague who finds meetings extremely tiring?

Straighten subgroup lattice

Why doesn't UInt have a toDouble()?

What does もの mean in this sentence?

Accepted by European university, rejected by all American ones I applied to? Possible reasons?

How to obtain a position of last non-zero element

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

Did any laptop computers have a built-in 5 1/4 inch floppy drive?

How can I have a shield and a way of attacking with a ranged weapon at the same time?

The phrase "to the numbers born"?

Falsification in Math vs Science

Why isn't the circumferential light around the M87 black hole's event horizon symmetric?

Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?

How much of the clove should I use when using big garlic heads?

Unitary representations of finite groups over finite fields

Kerning for subscripts of sigma?

How did passengers keep warm on sail ships?

Why couldn't they take pictures of a closer black hole?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

Why is the maximum length of OpenWrt’s root password 8 characters?



how to write angular 6 unit testing for if condition



The 2019 Stack Overflow Developer Survey Results Are InHow should I unit test threaded code?How do I test a private function or a class that has private methods, fields or inner classes?Unit Testing C CodeIs Unit Testing worth the effort?Unit testing code with a file system dependencyJavaScript unit test tools for TDDWhat is Unit test, Integration Test, Smoke test, Regression Test?Running unittest with typical test directory structureWriting unit tests in Python: How do I start?“Error: No provider for router” while writing Karma-Jasmine unit test cases



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








0















How to write unit testing for if the condition, please help me, anyone I tried to like this but it's not covered in my codecoverage



My component



isAppListEditable()
if(this.requestType === "new")
//console.info('inside');
return false;
else
return true;




my spec file



it('isAppListEditable', () => 
let requestType = "new";
component.isAppListEditable();
expect(component.isAppListEditable()).toBeFalsy;
);









share|improve this question
























  • hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

    – Yanis-git
    Mar 22 at 5:14











  • i updated my spec file

    – Ramesh vemula
    Mar 22 at 5:19











  • Do you set requestType somewhere else in your test?

    – fjc
    Mar 22 at 9:54

















0















How to write unit testing for if the condition, please help me, anyone I tried to like this but it's not covered in my codecoverage



My component



isAppListEditable()
if(this.requestType === "new")
//console.info('inside');
return false;
else
return true;




my spec file



it('isAppListEditable', () => 
let requestType = "new";
component.isAppListEditable();
expect(component.isAppListEditable()).toBeFalsy;
);









share|improve this question
























  • hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

    – Yanis-git
    Mar 22 at 5:14











  • i updated my spec file

    – Ramesh vemula
    Mar 22 at 5:19











  • Do you set requestType somewhere else in your test?

    – fjc
    Mar 22 at 9:54













0












0








0








How to write unit testing for if the condition, please help me, anyone I tried to like this but it's not covered in my codecoverage



My component



isAppListEditable()
if(this.requestType === "new")
//console.info('inside');
return false;
else
return true;




my spec file



it('isAppListEditable', () => 
let requestType = "new";
component.isAppListEditable();
expect(component.isAppListEditable()).toBeFalsy;
);









share|improve this question
















How to write unit testing for if the condition, please help me, anyone I tried to like this but it's not covered in my codecoverage



My component



isAppListEditable()
if(this.requestType === "new")
//console.info('inside');
return false;
else
return true;




my spec file



it('isAppListEditable', () => 
let requestType = "new";
component.isAppListEditable();
expect(component.isAppListEditable()).toBeFalsy;
);






angular unit-testing






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 5:18







Ramesh vemula

















asked Mar 22 at 4:54









Ramesh vemulaRamesh vemula

23




23












  • hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

    – Yanis-git
    Mar 22 at 5:14











  • i updated my spec file

    – Ramesh vemula
    Mar 22 at 5:19











  • Do you set requestType somewhere else in your test?

    – fjc
    Mar 22 at 9:54

















  • hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

    – Yanis-git
    Mar 22 at 5:14











  • i updated my spec file

    – Ramesh vemula
    Mar 22 at 5:19











  • Do you set requestType somewhere else in your test?

    – fjc
    Mar 22 at 9:54
















hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

– Yanis-git
Mar 22 at 5:14





hello and welcome to stackoverflow. If you Google it, you’ll find tutorials that can explain it much better than we can in an answer here. What have you try so far ?

– Yanis-git
Mar 22 at 5:14













i updated my spec file

– Ramesh vemula
Mar 22 at 5:19





i updated my spec file

– Ramesh vemula
Mar 22 at 5:19













Do you set requestType somewhere else in your test?

– fjc
Mar 22 at 9:54





Do you set requestType somewhere else in your test?

– fjc
Mar 22 at 9:54












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%2f55293125%2fhow-to-write-angular-6-unit-testing-for-if-condition%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%2f55293125%2fhow-to-write-angular-6-unit-testing-for-if-condition%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