Full-Stack Web Development with Vue.js and Node
Testing an MEVN Application Chapter 9 Check that the sidebar consists of the Home and Contact page links Click on the Contact p ...
Testing an MEVN Application Chapter 9 <v-toolbar-title>Home</v-toolbar-title> <v-spacer></v-spacer> < ...
Testing an MEVN Application Chapter 9 this.fetchUser(); this.listenToEvents(); }, methods: { listenToEvents() { bus.$on('refresh ...
Testing an MEVN Application Chapter 9 name="input-7-1" label="Movie Description" v-model="description" id="description" multi-li ...
Testing an MEVN Application Chapter 9 required ></v-text-field> <v-text-field label="Password" v-model="password" :r ...
Testing an MEVN Application Chapter 9 We have added the necessary identifier to all of the components. Now, let's add the e2e te ...
Testing an MEVN Application Chapter 9 rest of the Avengers unite to battle their most powerful enemy yet -- the evil Thanos. On ...
Testing an MEVN Application Chapter 9 After adding the e2e script, we should be able to run the test with the following command: ...
10 Going Live In the previous chapter, we learned how to write tests for the Node.js and Vue.js components for our application. ...
Going Live Chapter 10 Workflow for CI Here is a diagram that explains how CI works: In a real-world scenario, multiple developer ...
Going Live Chapter 10 Benefits of CI Now that we are aware of what CI is and why we should use it, let's look into some of the b ...
Going Live Chapter 10 Setting up Travis in the app Let's move on to the setup part. The first thing to do here is to check out t ...
Going Live Chapter 10 Create .travis.yml file in the application in the root: // travis.yml language: node_js node_js: "10.0.0" ...
Going Live Chapter 10 Managing the dependencies The next part is to install the dependencies. By default, no dependencies are ad ...
Going Live Chapter 10 While this is a good approach to view the builds, the best approach is to create a pull request for each b ...
Going Live Chapter 10 Then, make a commit for the changes with the following command: $ git add README.md $ git commit -m 'Updat ...
Going Live Chapter 10 As soon as you create a pull request, Travis CI will start to build the application, and as you go on to a ...
Going Live Chapter 10 We can also add settings to notify us via email or any other mechanism when the build fails or succeeds as ...
Going Live Chapter 10 When we click on Details, we can see the detailed log for the build as well: ...
Going Live Chapter 10 Once we are confident with the changes, we can merge the pull request to the master branch: Introduction t ...
«
9
10
11
12
13
14
15
16
17
18
»
Free download pdf