Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit f4673a0

Browse files
tiffanywilsonleoGalani
authored andcommitted
Grammar and Spelling Updates (#39)
* a few grammatical and spelling corrections * fix a few grammatical errors in code
1 parent c75f504 commit f4673a0

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
# Sherlock QA
44

55
Sherlock QA is an attempt to simplify the life of testers, product owners and
6-
people that do regression tests.
6+
others involved in regression testing.
77

8-
You should automate most your regressions tests, but sometimes you don't have the
9-
means, time or you need to mix hardware tasks and ask for nontechnical people to test
10-
your project.
8+
Automated regression tests are ideal, but sometimes do not cover 100% of functionality. Additionally, it can be helpful for non-technical people to help test your code.
119

12-
To run locally you will need to have the last version of docker Comunity Edition and docker-compose.
13-
Please, visit the following pages to know how to install them in your system.
10+
To run locally you will need to have the latest version of Docker Community Edition and docker-compose.
11+
Please, visit the following pages for information on how to install these tools.
1412

1513
- docker: https://docs.docker.com/engine/installation/
1614
- docker-compose: https://docs.docker.com/compose/install/
@@ -22,9 +20,9 @@ As easy as this:
2220
docker-compose up -d
2321

2422

25-
This will download the compiled version of Sherlock with all the dependencies and you will be ready to use as soon the command finish.
23+
This will download the compiled version of Sherlock with all the dependencies. You will be ready to use Sherlock as soon the command finishes.
2624

27-
You can also build the image yourself, but it may take a while (if you build it on a small machine like the entry machine on digitalocean, you might face some troubles because lack of memory):
25+
You can also build the image yourself, but it may take a while (if you build it on a small machine like the entry machine on digitalocean, you might face some troubles due to lack of memory):
2826

2927

3028
docker-compose -f docker-compose_build.yml build
@@ -42,8 +40,8 @@ Use the demo default credential:
4240
- _user:_ admin@admin.xpto
4341
- _pass:_ admin
4442

45-
More info on how to use or how to extend it, visit http://sherlockqa.readthedocs.io
46-
To talk about it and share your views with the Comunity, visit http://agiletesters.com.br
43+
For more info on how to use or how to extend Sherlock, visit http://sherlockqa.readthedocs.io
44+
To talk about Sherlock and share your views with the Community, visit http://agiletesters.com.br
4745

4846
And remember, a __pr__ is always welcome ;)
4947

frontsherlock/src/components/project/View.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
<router-link v-if="project.have_scenarios === false" :to="{ path: '/project/view/'+projectId+'/scenario_cases' }">
99
<div>
1010
<div class="uk-card uk-card-small uk-card-default uk-card-hover uk-card-body">
11-
<h4 class="uk-card-title">This project have no scenarios!</h4>
12-
<p>Click here to create cenarios and test cases for this project.</p>
11+
<h4 class="uk-card-title">This project has no scenarios!</h4>
12+
<p>Click here to create scenarios and test cases for this project.</p>
1313
</div>
1414
</div>
1515
</router-link>
1616
<div v-if="project.have_cycles === false && project.have_scenarios === false">
1717
<div class="uk-card uk-card-small uk-card-default uk-card-body">
18-
<h4 class="uk-card-title">This project have no cycles!</h4>
18+
<h4 class="uk-card-title">This project has no cycles!</h4>
1919
<p>You can't have cycles without test cases!</p>
2020
</div>
2121
</div>
2222
<div v-if="project.have_cycles === false && project.have_scenarios" @click="createCycle()" style="cursor:pointer;">
2323
<div class="uk-card uk-card-small uk-card-default uk-card-hover uk-card-body">
24-
<h4 class="uk-card-title">This project have no cycles!</h4>
24+
<h4 class="uk-card-title">This project has no cycles!</h4>
2525
<p>Click here to create the first cycle of this project.</p>
2626
</div>
2727
</div>
@@ -195,7 +195,7 @@ export default {
195195
var notExecuted = this.current_cycle.stats.total_not_executed
196196
var vueInstance = this
197197
if (notExecuted > 0) {
198-
UIkit.modal.confirm('This cycle still have [' + notExecuted.toString() + '] not executed. Are you sure!?').then(function () {
198+
UIkit.modal.confirm('This cycle still has [' + notExecuted.toString() + '] not executed. Are you sure!?').then(function () {
199199
UIkit.modal.prompt('Please provide a reason why closing the cycle with not executed tests? (required):', '').then(function (reason) {
200200
if (reason === null || reason === '') {
201201
UIkit.notification('<span uk-icon="icon: ban"></span> You should provide a reason', {timeout: '700'})

frontsherlock/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Vue.http.interceptors.push(function (request, next) {
3232
}
3333

3434
if (response.status === 404) {
35-
UIkit.notification('The item you looking for no longer exist', {status: 'warning', timeout: '700'})
35+
UIkit.notification('The item you are looking for no longer exists', {status: 'warning', timeout: '700'})
3636
this.$router.push({path: '/dashboard'})
3737
}
3838
})

0 commit comments

Comments
 (0)