Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
fix missing images, close #1
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Jun 30, 2018
1 parent aa49d8e commit 743143d
Show file tree
Hide file tree
Showing 15 changed files with 12 additions and 12 deletions.
Binary file added img/app-in-window.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contexts.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/dashboard.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/failing-test.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/inspect-first-get-todos.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/new-todo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/passing-test.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/post-item-response.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/post-item.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/response-body.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/test-passes-but-this-is-wrong.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/waiting.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions slides/04-reset-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

+++

![First test run](04-reset-state/img/passing-test.png)
![First test run](img/passing-test.png)

+++

![Second test run](04-reset-state/img/failing-test.png)
![Second test run](img/failing-test.png)

+++

![Inspect first XHR call](04-reset-state/img/inspect-first-get-todos.png)
![Inspect first XHR call](img/inspect-first-get-todos.png)

+++

Expand Down
12 changes: 6 additions & 6 deletions slides/05-xhr.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ it('starts with zero items', () => {
})
```

![Should have failed](05-xhr/img/test-passes-but-this-is-wrong.png)
![Should have failed](img/test-passes-but-this-is-wrong.png)

+++

Expand Down Expand Up @@ -48,7 +48,7 @@ it('starts with zero items', () => {
})
```

![Waiting works](05-xhr/img/waiting.png)
![Waiting works](img/waiting.png)

+++

Expand Down Expand Up @@ -82,7 +82,7 @@ it('starts with zero items', () => {
- wait for the XHR alias
- its response body should be an empty array

![Checking response body](05-xhr/img/response-body.png)
![Checking response body](img/response-body.png)

+++

Expand Down Expand Up @@ -111,23 +111,23 @@ cy.route('GET', '/todos', [])

When you add an item through the DOM, the app makes `POST` XHR call.

![Post new item](05-xhr/img/post-item.png)
![Post new item](img/post-item.png)

+++

## Todo 1/2

- write a test that confirms that new item is posted to the server

![Post new item](05-xhr/img/post-item.png)
![Post new item](img/post-item.png)

+++

## Todo 2/2

- write a test that confirms that RESPONSE when a new item is posted to the server

![Post new item response](05-xhr/img/post-item-response.png)
![Post new item response](img/post-item-response.png)

+++

Expand Down
6 changes: 3 additions & 3 deletions slides/06-app-data-store.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

+++

![Random id](06-app-data-store/img/new-todo.png)
![Random id](img/new-todo.png)

+++

Expand All @@ -28,13 +28,13 @@

## Iframed contexts

![Contexts](06-app-data-store/img/contexts.png)
![Contexts](img/contexts.png)

+++

## Application under test

![Application under test](06-app-data-store/img/app-in-window.png)
![Application under test](img/app-in-window.png)

+++

Expand Down

0 comments on commit 743143d

Please sign in to comment.