Skip to content

Commit 2f564bc

Browse files
committed
added post for the testing meetup
1 parent fbc9188 commit 2f564bc

File tree

6 files changed

+64
-26
lines changed

6 files changed

+64
-26
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
node_modules/
1+
node_modules/
2+
# Intellij
3+
.idea/
4+
*.iml
5+
*.iws

index.html

+20-19
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,26 @@ <h1>Welcome!</h1>
4040
<h2>Upcoming Events</h2>
4141
<div class="row">
4242
<div class="col-md-6">
43-
<h3><a href="/posts/react_primer_and_component_lifecycle.html">React Primer &amp; Component Lifecycle</a></h3>
44-
<dl>
45-
<dt>What</dt>
46-
<dd>
47-
<p>
48-
49-
Deep dive into React and the React Component Lifecycle by building a React component from scratch
50-
using idiomatic tools and practices.
51-
</p>
52-
</dd>
53-
<dt>Where </dt>
54-
<dd>
55-
<p>
56-
Tucson ReactJS meetups use the great downtown warehouse space provided by Elegant Thought, LLC.
57-
Drinks and light snacks will be provided by the organizers!
58-
</p>
59-
</dd>
60-
<address> <strong>Elegant Thought</strong><br/>15 E Toole Ave<br/>Tucson, AZ 85701 </address>
61-
</dl><a href="http://www.meetup.com/Tucson-ReactJS-Meetup/events/221275994/" class="obvious-link">RSVP on Meetup.com</a>
43+
<h3><a href="/posts/testing_react_applications.html">Testing React applications
44+
<dl></dl></a>
45+
<dt>What
46+
<dd>
47+
<p>
48+
What are the best frameworks for testing React? Jest, Karma
49+
Mocha? What are the ReactTestUtils and how can we use them?
50+
Join us to geek out about Testing React applications using common tools and frameworks
51+
</p>
52+
</dd>
53+
<dt>Where </dt>
54+
<dd>
55+
<p>
56+
Tucson ReactJS meetups use the great downtown warehouse space provided by Elegant Thought, LLC.
57+
Drinks and light snacks will be provided by the organizers!
58+
</p>
59+
</dd>
60+
<address> <strong>Elegant Thought</strong><br/>15 E Toole Ave<br/>Tucson, AZ 85701 </address>
61+
</dt><a href="http://www.meetup.com/Tucson-ReactJS-Meetup/events/221932862/" class="obvious-link">RSVP on Meetup.com</a>
62+
</h3>
6263
</div>
6364
</div>
6465
</div>

posts/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ <h1>The Tucson ReactJS Archive</h1>
3737
<div class="row">
3838
<div class="col-sm-8">
3939
<ul class="list-unstyled posts-lists">
40+
<li><a href="testing_react_applications.html" class="archived-post">
41+
<p class="post-title">Testing React applications</p>
42+
<p class="post-date">May 11 2015</p>
43+
<p class="lead">Links to slides and code for the meetup held on May 7th 2015</p></a></li>
4044
<li><a href="react_primer_and_component_lifecycle.html" class="archived-post">
4145
<p class="post-title">React Primer &amp; Component Lifecycle</p>
4246
<p class="post-date">April 14 2015</p>

posts/testing_react_applications.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!DOCTYPE html><html><head><script src="//use.typekit.net/yhu8tfk.js"></script><script>try{Typekit.load();}catch(e){}</script><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><title>Testing React applications</title><meta name="description" content=""><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="/css/styles.css"><script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script></head><body><nav role="navigation" class="navbar navbar-inverse navbar-fixed-top"><div class="container"><div class="navbar-header"><button type="button" data-toggle="collapse" data-target="#navbar-collapse" class="navbar-toggle collapsed"><span>Menu</span></button><img src="/img/ReactCactus.svg" alt="Tucson ReactJS logo with electrons revolving around a cactus" class="navbar-avatar"><a href="/" class="navbar-brand">Tucson ReactJS</a></div><div id="navbar-collapse" class="collapse navbar-collapse"><ul class="nav navbar-nav"><li class="active"><a href="/posts">Archive<span class="sr-only">(current)</span></a></li></ul></div></div></nav><div class="jumbotron"><div class="container"><h1>The Tucson ReactJS Archive</h1><p class="h2">
2+
A collection of articles and slides for meetups</p></div></div><div class="container"><div class="row"><div class="col-sm-8"><h1 class="post-title">Testing React applications</h1><p>by <a href="https://github.com/thewazir">@thewazir</a></p><p>May 11 2015</p><p class="lead">Links to slides and code for the meetup held on May 7th 2015</p><p>Our second meetup was organized by Omer Wazir<a href="https://github.com/bringking"> @thewazir</a> and he covered Unit testing strategies for React applications.
3+
You can find slides<a href="#slides">[1]</a> and accompanying code examples<a href="#code">[2]</a> in the links below.</p><br><a href="http://tucsonreactjs.github.io/testingReactApplications/#/" id="slides">[1] Link to slides.</a><br><a href="https://github.com/TucsonReactJS/primer" id="code">[2] Link to code examples.</a></div><div class="col-sm-3 col-sm-offset-1 sidebar"><a href="http://www.meetup.com/Tucson-ReactJS-Meetup/" alt="Tucson ReactJS Meetup page"><img src="/img/ReactCactus.svg" class="center-block sidebar-module-avatar"></a></div></div></div><script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script></body></html>

src/index.jade

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ html(lang="en")
1616
.row
1717
.col-md-6
1818
h3
19-
a(href="/posts/react_primer_and_component_lifecycle.html") React Primer &amp; Component Lifecycle
20-
dl
19+
a(href="/posts/testing_react_applications.html") Testing React applications
20+
dl
2121
dt What
2222
dd
23-
p
24-
| Deep dive into React and the React Component Lifecycle by building a React component from scratch
25-
| using idiomatic tools and practices.
23+
p
24+
| What are the best frameworks for testing React? Jest, Karma
25+
| Mocha? What are the ReactTestUtils and how can we use them?
26+
| Join us to geek out about Testing React applications using common tools and frameworks
2627
dt Where
2728
dd
2829
p Tucson ReactJS meetups use the great downtown warehouse space provided by Elegant Thought, LLC.
@@ -33,6 +34,6 @@ html(lang="en")
3334
| 15 E Toole Ave
3435
br/
3536
| Tucson, AZ 85701
36-
a.obvious-link(href="http://www.meetup.com/Tucson-ReactJS-Meetup/events/%3Cspan%20class="x x-first x-last">221275994/") RSVP on Meetup.com
37+
a.obvious-link(href="http://www.meetup.com/Tucson-ReactJS-Meetup/events/%3Cspan%20class="x x-first x-last">221932862/") RSVP on Meetup.com
3738
include ./layouts/includes/scripts.jade
3839

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: 'Testing React applications'
3+
lead: 'Links to slides and code for the meetup held on May 7th 2015'
4+
author: '@thewazir'
5+
github: 'https://github.com/thewazir'
6+
date: 'May 11 2015'
7+
---
8+
extends ../layouts/posts/layout.jade
9+
block title
10+
title #{title}
11+
block content
12+
include ../layouts/includes/postHeader.jade
13+
p
14+
| Our second meetup was organized by Omer Wazir
15+
a(href="https://github.com/bringking") @thewazir
16+
| and he covered Unit testing strategies for React applications.
17+
| You can find slides
18+
a(href="#slides")[1]
19+
| and accompanying code examples
20+
a(href="#code")[2]
21+
| in the links below.
22+
br/
23+
a(href="http://tucsonreactjs.github.io/testingReactApplications/#/" id="slides") [1] Link to slides.
24+
br/
25+
a(href="https://github.com/TucsonReactJS/primer" id="code") [2] Link to code examples.

0 commit comments

Comments
 (0)