Skip to content

Commit 2b525ab

Browse files
name change
1 parent c74b878 commit 2b525ab

File tree

8 files changed

+50
-50
lines changed

8 files changed

+50
-50
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [`<Blog />`](https://colinrcummings.github.io/blog/)
1+
# [`<Blog />`](https://colinrobertbrooks.github.io/blog/)
22

33
My personal blog. Forked from [Gatsby blog starter](https://github.com/gatsbyjs/gatsby-starter-blog).
44

content/blog/a-wedding-website/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@ From Google's [PageSpeed Insights](https://testmysite.thinkwithgoogle.com/):
171171

172172
## Feedback
173173

174-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
174+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
175175

176176
— Colin

content/blog/buttercup-password-manager/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ Check out the [roadmap](https://github.com/buttercup/roadmap) for more informati
5454

5555
## Feedback
5656

57-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
57+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
5858

5959
— Colin

content/blog/introduction-to-react/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Introduction to React.js
33
date: '2017-05-18'
44
---
55

6-
I've been using [React](https://facebook.github.io/react/) for a few years now. If you read my [previous post](/a-wedding-website/), then you know that it's my go-to library for creating user interfaces (including [this blog](https://github.com/colinrcummings/blog)). I was recently asked to give a presentation on React at one of the software development Meetups I attend. I opted to introduce the library, walk through a couple of core concepts (with examples), do a few ad hoc demos and then leave the audience with some additional concepts, resources and tools. Below is an overview of [Spectacle](http://formidable.com/open-source/spectacle/), the library I used to create the presentation.
6+
I've been using [React](https://facebook.github.io/react/) for a few years now. If you read my [previous post](/a-wedding-website/), then you know that it's my go-to library for creating user interfaces (including [this blog](https://github.com/colinrobertbrooks/blog)). I was recently asked to give a presentation on React at one of the software development Meetups I attend. I opted to introduce the library, walk through a couple of core concepts (with examples), do a few ad hoc demos and then leave the audience with some additional concepts, resources and tools. Below is an overview of [Spectacle](http://formidable.com/open-source/spectacle/), the library I used to create the presentation.
77

8-
[View Presentation](http://colinrcummings.github.io/meetup-react)
8+
[View Presentation](https://colinrobertbrooks.github.io/meetup-react)
99

1010
---
1111

@@ -29,6 +29,6 @@ Because the entire Spectacle presentation is a React component, I was able to em
2929

3030
## Feedback
3131

32-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
32+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
3333

3434
— Colin

content/blog/managing-environment-workflows-with-gulp/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ date: '2017-10-03'
55

66
Over the years, I've used a few different combinations of frameworks, libraries and tools, some of which come with environment workflows out-of-the-box and others that do not. With the [rising popularity of Node.js](https://trends.google.com/trends/explore?date=all&q=%2Fm%2F0505cl,%2Fm%2F06y_qx,%2Fm%2F0bbxf89), the need to roll one's own environment workflows is also on the rise, as is the number of resources with which to do so. I recently give a presentation about this topic at one of the software development Meetups I attend; below is an overview of the presentation, the lion's share of which was a live demo.
77

8-
[View Presentation](http://colinrcummings.github.io/meetup-gulp)
8+
[View Presentation](https://colinrobertbrooks.github.io/meetup-gulp)
99

1010
---
1111

@@ -65,6 +65,6 @@ In the production environment, the deploy workflow on the server unzips the zipp
6565

6666
## Feedback
6767

68-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
68+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
6969

7070
— Colin

content/blog/testing-javascript-applications/index.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Code was being tested, but not necessarily _well_ tested. [Integration tests](ht
1717
![Unit Tests Passing (meme)](./images/unit_tests_passing_meme_2.jpg)
1818
```
1919

20-
Below is an overview of my evolved approach to testing JavaScript applications. Also take a look at the [demo app](https://github.com/colinrcummings/testing-javascript-applications-demo) on GitHub, which puts it into practice.
20+
Below is an overview of my evolved approach to testing JavaScript applications. Also take a look at the [demo app](https://github.com/colinrobertbrooks/testing-javascript-applications-demo) on GitHub, which puts it into practice.
2121

2222
_nota bene_: Testing is an immense topic; what follows is intended to be a modest contribution. It's written standing on the shoulders of giants (see references below). It contains opinions and suggestions; testing lacks hard and fast rules. The JavaScript ecosystem also marches on; tools come and go, and testing is no exception.
2323

@@ -169,7 +169,7 @@ _Write tests for the sake of added confidence, not added coverage._
169169

170170
My approach to writing tests for an application depends on the portion being tested, which in turn directs the type of test that's used.
171171

172-
_nota bene_: This section references the demo app. Scripts can be found in the [`package.json`](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/package.json#L7) file. Organizing and naming tests is largely a matter of preference. For organizational purposes, I've co-located everything related to testing in a top-level [test](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test) directory. For nomenclature purposes, I've included the type of test in each test's file name (_i.e._, `*.unit.spec.js`, `*.integration.spec.js` and `*.e2e.spec.js`).
172+
_nota bene_: This section references the demo app. Scripts can be found in the [`package.json`](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/package.json#L7) file. Organizing and naming tests is largely a matter of preference. For organizational purposes, I've co-located everything related to testing in a top-level [test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test) directory. For nomenclature purposes, I've included the type of test in each test's file name (_i.e._, `*.unit.spec.js`, `*.integration.spec.js` and `*.e2e.spec.js`).
173173

174174
### Static
175175

@@ -185,21 +185,21 @@ For backend code, I primarily write unit tests. My goal in these tests is to val
185185

186186
For example:
187187

188-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/views/feature_1.unit.spec.js) for a view controller ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/controllers/views/feature_1.js)) covering all likely user authentication/authorization scenarios.
188+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/views/feature_1.unit.spec.js) for a view controller ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/controllers/views/feature_1.js)) covering all likely user authentication/authorization scenarios.
189189

190-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/api/access.unit.spec.js) for an API endpoint controller ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/controllers/api/access.js)) covering all likely user authentication/authorization scenarios and an unlikely model error scenario.
190+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/controllers/api/access.unit.spec.js) for an API endpoint controller ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/controllers/api/access.js)) covering all likely user authentication/authorization scenarios and an unlikely model error scenario.
191191

192-
- A [unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/helpers/authentication/password.unit.spec.js) for a password helper ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/helpers/authentication/password.js)) covering all likely validation scenarios.
192+
- A [unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/helpers/authentication/password.unit.spec.js) for a password helper ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/helpers/authentication/password.js)) covering all likely validation scenarios.
193193

194194
I find `describe` blocks useful for organizing logical branches, and the arrange/act/assert pattern useful for structuring individual test blocks.
195195

196-
_nota bene_: Both controller unit tests utilize helpers to reduce repetition across similar tests, which can be found in the [controller-test-helpers](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/jest/helpers/controller-test-helpers) directory.
196+
_nota bene_: Both controller unit tests utilize helpers to reduce repetition across similar tests, which can be found in the [controller-test-helpers](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/jest/helpers/controller-test-helpers) directory.
197197

198198
#### Frontend
199199

200200
For frontend code, I primarily write integration tests. My goal in these tests is to validate DOM output resulting from a combination of likely API response and user interaction scenarios.
201201

202-
Take the Manage Users view ([source](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/app/assets/javascripts/client/manage_users/manage_users.js)) as an example, which renders a list of users in addition to providing a means of creating, updating and deleting users. To test the UI for this view, I start with an [integration test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/Root.integration.spec.js) that mounts the `<Root/>` component via a custom renderer exposing react-testing-library's utilities as well as some additional helpers for common actions and assertions. The test cases, which are written in the same way a manual tester would perform them, cover the following scenarios:
202+
Take the Manage Users view ([source](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/app/assets/javascripts/client/manage_users/manage_users.js)) as an example, which renders a list of users in addition to providing a means of creating, updating and deleting users. To test the UI for this view, I start with an [integration test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/Root.integration.spec.js) that mounts the `<Root/>` component via a custom renderer exposing react-testing-library's utilities as well as some additional helpers for common actions and assertions. The test cases, which are written in the same way a manual tester would perform them, cover the following scenarios:
203203

204204
- Initial list of users
205205

@@ -227,23 +227,23 @@ Take the Manage Users view ([source](https://github.com/colinrcummings/testing-j
227227

228228
Collectively, these scenarios exercise the majority of the UI's functionality, in addition to simulating all of the errors that the API can return. Integration testing the entire component tree in this way not only covers a lot of code, it also gives me more confidence that everything is working together properly than testing each component in isolation would. That being said, it doesn't cover everything, so I augment the integration test with a few unit tests covering:
229229

230-
- Validation on the create user form ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserCreateFormContainer.unit.spec.js))
231-
- Validation and optional password on the update user form ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserUpdateFormContainer.unit.spec.js))
232-
- Admin users cannot be deleted ([unit test](https://github.com/colinrcummings/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/presentational/UserDeleteModalToggle.unit.spec.js))
230+
- Validation on the create user form ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserCreateFormContainer.unit.spec.js))
231+
- Validation and optional password on the update user form ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/container/UserUpdateFormContainer.unit.spec.js))
232+
- Admin users cannot be deleted ([unit test](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/blob/master/test/jest/specs/app/assets/javascripts/client/manage_users/components/presentational/UserDeleteModalToggle.unit.spec.js))
233233

234234
### End-to-end
235235

236236
While end-to-end tests are the slowest type of test because they must be run serially against a running server, they also provide the highest level of confidence. End-to-end tests cover the entire application, including gaps left by other types of tests, such as the interactions between controllers and models, which are mocked out in unit tests, and the interactions between UIs and APIs, which are mocked out in integration tests. Additionally, because end-to-end tests run in a browser environment, they're a good place to cover routers, which are tightly coupled to HTTP requests.
237237

238238
End-to-end tests can be run in headless mode with the `test:e2e` command or in interactive mode with the `test:e2e:interactive` command. Organizationally, I like to structure them as follows:
239239

240-
- [Authentication](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/authentication), which cover the entire login and logout flows as well as access to views requiring user authentication.
240+
- [Authentication](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/authentication), which cover the entire login and logout flows as well as access to views requiring user authentication.
241241

242-
- [Authorization](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/authorization), which cover access to views requiring user authorization.
242+
- [Authorization](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/authorization), which cover access to views requiring user authorization.
243243

244-
- [Shared](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/shared), which cover elements that are present on all of the views (_e.g._, the navbar and footer).
244+
- [Shared](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/shared), which cover elements that are present on all of the views (_e.g._, the navbar and footer).
245245

246-
- [Views](https://github.com/colinrcummings/testing-javascript-applications-demo/tree/master/test/cypress/specs/views), which cover the happy paths for each view.
246+
- [Views](https://github.com/colinrobertbrooks/testing-javascript-applications-demo/tree/master/test/cypress/specs/views), which cover the happy paths for each view.
247247

248248
Structuring end-to-end tests in this way is inspired by [this talk](https://youtu.be/5XQOK0v_YRE) by [Brian Mann](https://twitter.com/be_mann) (the creator of Cypress), which covers organization as well as some other [best practices](https://docs.cypress.io/guides/references/best-practices.html) for testing with Cypress.
249249

@@ -302,6 +302,6 @@ The following people have helped shape my thinking about software testing.
302302

303303
## Feedback
304304

305-
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrcummings](https://twitter.com/colinrcummings)).
305+
Have questions, comments or suggestions? Reach out to me on Twitter ([@colinrbrooks](https://twitter.com/colinrbrooks)).
306306

307307
— Colin

gatsby-config.js

+25-25
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@ module.exports = {
22
pathPrefix: '/blog',
33
siteMetadata: {
44
title: `<Blog />`,
5-
author: `Colin Cummings`,
5+
author: `Colin Brooks`,
66
description: `Posts about projects and other programing-related things.`,
7-
siteUrl: `https://colinrcummings.github.io/blog/`,
7+
siteUrl: `https://colinrobertbrooks.github.io/blog/`,
88
social: {
9-
github: `colinrcummings`,
10-
twitter: `colinrcummings`,
11-
instagram: `colinrcummings`
12-
}
9+
github: `colinrobertbrooks`,
10+
twitter: `colinrbrooks`,
11+
instagram: `colinrobertbrooks`,
12+
},
1313
},
1414
plugins: [
1515
{
1616
resolve: `gatsby-plugin-google-analytics`,
1717
options: {
18-
trackingId: 'UA-135947518-1'
19-
}
18+
trackingId: 'UA-135947518-1',
19+
},
2020
},
2121
{
2222
resolve: `gatsby-source-filesystem`,
2323
options: {
2424
path: `${__dirname}/content/blog`,
25-
name: `blog`
26-
}
25+
name: `blog`,
26+
},
2727
},
2828
{
2929
resolve: `gatsby-source-filesystem`,
3030
options: {
3131
path: `${__dirname}/content/assets`,
32-
name: `assets`
33-
}
32+
name: `assets`,
33+
},
3434
},
3535
{
3636
resolve: `gatsby-transformer-remark`,
@@ -39,27 +39,27 @@ module.exports = {
3939
{
4040
resolve: 'gatsby-remark-images-grid',
4141
options: {
42-
gridGap: '10px'
43-
}
42+
gridGap: '10px',
43+
},
4444
},
4545
{
4646
resolve: `gatsby-remark-images`,
4747
options: {
48-
maxWidth: 590
49-
}
48+
maxWidth: 590,
49+
},
5050
},
5151
{
5252
resolve: `gatsby-remark-responsive-iframe`,
5353
options: {
54-
wrapperStyle: `margin-bottom: 1.0725rem`
55-
}
54+
wrapperStyle: `margin-bottom: 1.0725rem`,
55+
},
5656
},
5757
`gatsby-remark-autolink-headers`,
5858
`gatsby-remark-prismjs`,
5959
`gatsby-remark-copy-linked-files`,
60-
`gatsby-remark-smartypants`
61-
]
62-
}
60+
`gatsby-remark-smartypants`,
61+
],
62+
},
6363
},
6464
`gatsby-transformer-sharp`,
6565
`gatsby-plugin-sharp`,
@@ -68,8 +68,8 @@ module.exports = {
6868
{
6969
resolve: `gatsby-plugin-typography`,
7070
options: {
71-
pathToConfigModule: `src/utils/typography`
72-
}
73-
}
74-
]
71+
pathToConfigModule: `src/utils/typography`,
72+
},
73+
},
74+
],
7575
};

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "blog",
3-
"author": "Colin Cummings <[email protected]>",
3+
"author": "Colin Brooks <[email protected]>",
44
"version": "3.0.0",
5-
"repository": "https://github.com/colinrcummings/blog",
5+
"repository": "https://github.com/colinrobertbrooks/blog",
66
"private": true,
77
"scripts": {
88
"clean": "rm -rf ./.cache/*",

0 commit comments

Comments
 (0)