You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
5.4 KiB
126 lines
5.4 KiB
11 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||
|
|
||
|
<!-- Enable responsiveness on mobile devices-->
|
||
|
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape-->
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
|
||
|
|
||
|
<title>Julio Biason .Me 4.3</title>
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/print.css" media="print">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/poole.css">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/hyde.css">
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body class=" ">
|
||
|
|
||
|
<div class="sidebar">
|
||
|
<div class="container sidebar-sticky">
|
||
|
<div class="sidebar-about">
|
||
|
|
||
|
<a href="https://blog.juliobiason.me"><h1>Julio Biason .Me 4.3</h1></a>
|
||
|
|
||
|
<p class="lead">Old school dev living in a 2.0 dev world</p>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<ul class="sidebar-nav">
|
||
|
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/">English</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt">Português</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/tags">Tags (EN)</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt/tags">Tags (PT)</a></li>
|
||
|
|
||
|
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="content container">
|
||
|
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">JavaScript Testing Beginner's Guide - Liang Yuxian Eugene</h1>
|
||
|
<span class="post-date">
|
||
|
2015-09-10
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/books/">#books</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/liang-yuxian-eugene/">#liang yuxian eugene</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/reviews/">#reviews</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/javascript/">#javascript</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/tests/">#tests</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/it/">#it</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/stars-1/">#stars:1</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/published-2010/">#published:2010</a>
|
||
|
|
||
|
</span>
|
||
|
<p><a href="https://www.goodreads.com/book/show/9272372-javascript-testing-beginner-s-guide">GoodReads Summary</a>:
|
||
|
This book is organized such that only the most essential information is
|
||
|
provided to you in each chapter so as to maximize your learning. Examples and
|
||
|
tutorials are given in an easy to follow, step-by-step manner so that you can
|
||
|
see how the testing process is being carried out and how the code is being
|
||
|
written. The source code also contains detailed explanation so that you know
|
||
|
what the code is doing. Multiple screenshots are used in places that matter so
|
||
|
that you have a visual sense of what is happening. Beginner JavaScript
|
||
|
developers looking for essential ways to write, test, and debug JavaScript for
|
||
|
different purposes and situations.</p>
|
||
|
<span id="continue-reading"></span><div>
|
||
|
★☆☆☆☆
|
||
|
</div>
|
||
|
<p>Let me start this by saying that I really liked the structure of the book. For
|
||
|
each chapter, there is an explanation of what will be covered; a "call for
|
||
|
action" which shows the code and then describes, step by step, what is going
|
||
|
on; a further explanation on when running said code; and, finally, some
|
||
|
pointers on where to go forward.</p>
|
||
|
<p>That being said, this is a mess of a book. The kindle version is completely
|
||
|
mangled on the source code. Indentation is completely wrong, which makes the
|
||
|
code hard to read; the code is full of stupid mistakes (like having an object
|
||
|
and trying to get it again with <code>getElementById(element.id)</code>); and, generally,
|
||
|
it's pure bad code (like raising an exception inside a try/catch just to catch
|
||
|
it afterwards). Not only that, but the book goes incredible lengths to explain
|
||
|
JavaScript, what are unit tests and such and, just in the last chapter, it
|
||
|
finally explains JavaScript Testing.</p>
|
||
|
<p>That wouldn't be so bad if it was a recent book. But it's a book from 2010,
|
||
|
with no further editions, and a lot has changed in the JavaScript landscape in
|
||
|
those last 5 years. New frameworks appeared, new tools are here, JavaScript is
|
||
|
not client side only anymore... The list goes on and on. Heck, the author goes
|
||
|
lengths to explain how to test in IE because it's the most used browser at the
|
||
|
time!</p>
|
||
|
<p>Honestly, stay away from this book. Get a book about JavaScript. Get a book
|
||
|
about testing. Pick one of the JavaScript testing frameworks around (I know at
|
||
|
least 5), read its documentation and you'll be in a better place than reading
|
||
|
this.</p>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|