Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h4 class="panel-title">1. Install</h4></div>
<p>Execute:</p>
<div class="highlight">
<p>
<pre>php venor/bin/codecept bootstrap</pre>
<pre>php vendor/bin/codecept bootstrap</pre>
</p>
</div>
<p class="text-muted">This creates configuration file
Expand All @@ -100,7 +100,7 @@ <h4 class="panel-title">1. Install</h4></div>
of a real user visiting your site.</p>
<div class="highlight">
<p>
<pre>php venor/bin/codecept generate:cest acceptance First</pre>
<pre>php vendor/bin/codecept generate:cest acceptance First</pre>
</p>
</div>
</div> <!-- /.panel-body -->
Expand Down Expand Up @@ -158,7 +158,7 @@ <h4 class="panel-title">5. Write a Basic Test</h4>
<p>Tests are executed with 'run' command</p>
<div class="highlight">
<p>
<pre>php venor/bin/codecept run --steps</pre>
<pre>php vendor/bin/codecept run --steps</pre>
</p>
</div>
<p class="text-muted">This will execute our Welcome test with
Expand All @@ -183,7 +183,7 @@ <h3>Simplified Setup</h3>
<h4>Acceptance Testing (only)</h4>

<div class="highlight">
<pre>php venor/bin/codecept init acceptance</pre>
<pre>php vendor/bin/codecept init acceptance</pre>
</div>

<a class="btn btn-primary" role="button" data-toggle="collapse" href="#acceptance-demo" aria-expanded="false" aria-controls="collapseExample">
Expand All @@ -197,7 +197,7 @@ <h4>Acceptance Testing (only)</h4>
<h4>REST API Testing (only)</h4>

<div class="highlight">
<pre>php venor/bin/codecept init api</pre>
<pre>php vendor/bin/codecept init api</pre>
</div>


Expand All @@ -214,7 +214,7 @@ <h4>REST API Testing (only)</h4>
<h4>Unit Testing (only)</h4>

<div class="highlight">
<pre>php venor/bin/codecept init unit</pre>
<pre>php vendor/bin/codecept init unit</pre>
</div>

<a class="btn btn-primary" role="button" data-toggle="collapse" href="#unit-demo" aria-expanded="false" aria-controls="collapseExample">
Expand Down