Cargando…

Test-driven JavaScript development : learn JavaScript test-driven development using popular frameworks and tools /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autores principales: Gupta, Ravi Kumar (Autor), Prajapati, Hetal (Autor), Singh, Harmeet (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn934725489
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160114s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d YDXCP  |d N$T  |d IDEBK  |d VT2  |d COO  |d EBLCP  |d DEBSZ  |d DEBBG  |d OCLCQ  |d MERUC  |d OCLCQ  |d CEF  |d OCLCQ  |d UAB  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO 
019 |a 933437714  |a 933442314  |a 951064920 
020 |a 9781785288746  |q (electronic bk.) 
020 |a 1785288741  |q (electronic bk.) 
020 |a 1782174923 
020 |a 9781782174929 
020 |z 9781782174929 
024 3 |a 9781782174929 
029 1 |a AU@  |b 000057033379 
029 1 |a CHNEW  |b 000960582 
029 1 |a CHVBK  |b 491696353 
029 1 |a DEBBG  |b BV043892750 
029 1 |a DEBBG  |b BV043968623 
029 1 |a DEBSZ  |b 473884968 
029 1 |a DEBSZ  |b 485791285 
029 1 |a GBVCP  |b 882751085 
029 1 |a AU@  |b 000066232324 
035 |a (OCoLC)934725489  |z (OCoLC)933437714  |z (OCoLC)933442314  |z (OCoLC)951064920 
037 |a CL0500000702  |b Safari Books Online 
050 4 |a QA76.73.J39 
072 7 |a COM  |x 051260  |2 bisacsh 
082 0 4 |a 005.2762  |2 23 
049 |a UAMI 
100 1 |a Gupta, Ravi Kumar,  |e author. 
245 1 0 |a Test-driven JavaScript development :  |b learn JavaScript test-driven development using popular frameworks and tools /  |c Ravi Kumar Gupta, Hetal Prajapati, Harmeet Singh. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed May 3, 2016). 
500 |a Includes index. 
520 8 |a Annotation  |b Learn JavaScript test-driven development using popular frameworks and toolsAbout This Book Learn the life cycle of TDD and its importance in real-world application Gain knowledge about popular tools and analyze features, syntax, and how they help in JavaScript testing Implement test-driven programming exercises using the practical code examplesWho This Book Is ForIf you have an intermediate knowledge of HTML, CSS, and JavaScript and want to learn how and why the test-driven development approach is better for your assignments, then this book is for you. What You Will Learn Basic TDD fundamentals, life cycle, and benefits Become acquainted with the concepts and elements of unit testing and writing basic unit tests for JavaScript Understand the way JsUnit, Qunit, Karma and DalekJs work Use the Jasmine framework Interpret feature detection and devise tests specific to cross-browser compatibility Integrate jsTestDriver with Eclipse and run tests with jsTestDriver Explore re-factoring, adding and notifying observers Understand test-driven development in case of server-side JSIn DetailInitially, all processing used to happen on the server-side and simple output was the response to web browsers. Nowadays, there are so many JavaScript frameworks and libraries created that help readers to create charts, animations, simulations, and so on. By the time a project finishes or reaches a stable state, so much JavaScript code has already been written that changing and maintaining it further is tedious. Here comes the importance of automated testing and more specifically, developing all that code in a test-driven environment. Test-driven development is a methodology that makes testing the central part of the design process before writing code developers decide upon the conditions that code must meet to pass a test. The end goal is to help the readers understand the importance and process of using TDD as a part of development. This book starts with the details about test-driven development, its importance, need, and benefits. Later the book introduces popular tools and frameworks like YUI, Karma, QUnit, DalekJS, JsUnit and goes on to utilize Jasmine, Mocha, Karma for advanced concepts like feature detection, server-side testing, and patterns. We are going to understand, write, and run tests, and further debug our programs. The book concludes with best practices in JavaScript testing. By the end of the book, the readers will know why they should test, how to do it most efficiently, and will have a number of versatile tests (and methods for devising new tests) to get to work immediately. Style and approachEasy-to-follow guide with suitable examples for developing JavaScript code in the test-Driven environment, with popular tools and frameworks. User experience and statements are also included to help readers make a better choice of tool for real-world projects. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Conventions; Chapter 1: Overview of TDD; Complexity of web pages; Understanding test-driven development; The need for testing; Types of testing; The life cycle of TDD; TDD microcycle; Agile and TDD; Benefits of TDD and common myths; Benefits; Myths; Summary; Chapter 2: Testing Concepts; Unit testing; Unit testing frameworks; YUI Tests; Following the process; Preparing the environment; Following the life cycle; Writing a test; Running the test and seeing if test fails. 
505 8 |a Writing a production codeRunning all tests; Cleaning up the code; Repeat; Using the browser console; setUp() and tearDown(); Test suites; Actions and assertions; Actions; Assertions; Benefits and pitfalls; Benefits of unit testing; Pitfalls of unit testing; Summary; Chapter 3: Testing Tools; JsUnit; Getting started; Writing tests; Running tests; QUnit; Getting started; Writing tests; Running tests; Karma with Jasmine; Getting started; Writing tests; Running tests; DalekJS; Getting started; Writing tests; Actions; Assertions; Running tests; Summary; Chapter 4: Jasmine. 
505 8 |a Understanding behavior-driven developmentSetting up Jasmine; describe and specs; Expectations; Matchers; Set up and tear down; Spies; Tracking spies using calls; Creating a custom spy; Jasmine clock; Creating a custom matcher; Creating a custom equality tester; Asynchronous calls; The Jasmine Ajax plugin; Nesting suites; Disabling suites and specs; Summary; Chapter 5: JsTestDriver; JsTestDriver; Overview; Getting started; Writing tests; Assertions; Capturing the browser; Restructuring your project; The configuration file; Running tests using the command prompt. 
505 8 |a Setting up JsTestDriver with IDERunning the tests; Running Jasmine specs; Code coverage; Summary; Chapter 6: Feature Detection; Understanding feature detection; Available methods and libraries; has.js; Writing custom tests; Modernizr; Downloading and setting up Modernizr; How it works; Using Modernizr; Polyfills; Loading polyfills; Supported browsers; Browser detection; User agent sniffing; Object detection; Features testing with Modernizr; CSS features; HTML5 features; Miscellaneous features; Plugins for additional tests; Modernizr methods; Modernizr.prefixed(); Modernizr.prefixedCSS(). 
505 8 |a Modernizr.mq()Modernizr.on(); Modernizr.atRule(); Modernizr.addTest(); Modernizr.testStyles(); Modernizr.testProp(); Modernizr.testAllProps(); Modernizr.hasEvent(); Modernizr._prefixes and Modernizr._domPrefixes; Undetectable features; Summary; Chapter 7: Observer Design Pattern; Overview; When to use it; Advantages; Disadvantages; Different implementations of the observer; Event dispatcher/listener; Publish/subscribe; Push versus pull; Sample code; Understanding patterns in API; Observer with topics; Observer pattern using jQuery. Callbacks; Implementing the observer pattern using TDD. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a JavaScript (Computer program language) 
650 6 |a JavaScript (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming Languages  |x JavaScript.  |2 bisacsh 
650 7 |a JavaScript (Computer program language)  |2 fast 
700 1 |a Prajapati, Hetal,  |e author. 
700 1 |a Singh, Harmeet,  |e author. 
776 0 8 |i Print version:  |a Gupta, Ravi Kumar.  |t Test-Driven JavaScript Development.  |d Birmingham : Packt Publishing, ©1900 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781782174929/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4191326 
938 |a EBSCOhost  |b EBSC  |n 1130835 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis33418514 
938 |a YBP Library Services  |b YANK  |n 12758480 
994 |a 92  |b IZTAP