Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature #9: guide/nested suites section #10

Merged
merged 5 commits into from
Apr 3, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ _site
.jekyll-metadata
package-lock.json
attic
.*.swp
.idea
12 changes: 0 additions & 12 deletions _includes/example-code.md

This file was deleted.

17 changes: 16 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,22 @@ order: 0
<img src="/assets/img/logo-square.svg">
</div>
<div class="tile is-child is-8">
<div class="content">{% include example-code.md %}</div>
<div class="content">
{% highlight TypeScript linenos %}
import { suite, test } from '@testdeck/mocha';
import * as chai from 'chai';

@suite
class TestSuite {

@test
someTest() {

chai.assert.isOk(false);
}
}
{% endhighlight %}
</div>
</div>
</div>
</div>
Expand Down
13 changes: 0 additions & 13 deletions pages/guide/barfoo.md

This file was deleted.

Loading