11# Test Suite
22
3- [ ![ version] ( https://img.shields.io/badge/release-0.9.2 -success )] ( https://deno.land/x/test_suite@0.9.2 )
4- [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/test_suite@0.9.2 /mod.ts )
3+ [ ![ version] ( https://img.shields.io/badge/release-0.9.3 -success )] ( https://deno.land/x/test_suite@0.9.3 )
4+ [ ![ deno doc] ( https://doc.deno.land/badge.svg )] ( https://doc.deno.land/https/deno.land/x/test_suite@0.9.3 /mod.ts )
55[ ![ CI] ( https://github.com/udibo/test_suite/workflows/CI/badge.svg )] ( https://github.com/udibo/test_suite/actions?query=workflow%3ACI )
66[ ![ codecov] ( https://codecov.io/gh/udibo/test_suite/branch/master/graph/badge.svg?token=EFKGY72AAV )] ( https://codecov.io/gh/udibo/test_suite )
77[ ![ license] ( https://img.shields.io/github/license/udibo/test_suite )] ( https://github.com/udibo/test_suite/blob/master/LICENSE )
@@ -26,16 +26,16 @@ also be imported directly from GitHub using raw content URLs.
2626
2727``` ts
2828// Import from Deno's third party module registry
29- import { TestSuite , test } from " https://deno.land/x/test_suite@0.9.2 /mod.ts" ;
29+ import { TestSuite , test } from " https://deno.land/x/test_suite@0.9.3 /mod.ts" ;
3030// Import from GitHub
31- import { TestSuite , test } " https://raw.githubusercontent.com/udibo/test_suite/0.9.2 /mod.ts" ;
31+ import { TestSuite , test } " https://raw.githubusercontent.com/udibo/test_suite/0.9.3 /mod.ts" ;
3232` ` `
3333
3434## Usage
3535
3636Below are some examples of how to use TestSuite and test in tests.
3737
38- See [deno docs](https://doc.deno.land/https/deno.land/x/test_suite@0.9.2 /mod.ts)
38+ See [deno docs](https://doc.deno.land/https/deno.land/x/test_suite@0.9.3 /mod.ts)
3939for more information.
4040
4141### TestSuite
@@ -56,13 +56,13 @@ except they are called before and after each individual test.
5656The example test below can be found in the example directory.
5757
5858` ` ` ts
59- import { test , TestSuite } from " https://deno.land/x/test_suite@0.9.2 /mod.ts" ;
59+ import { test , TestSuite } from " https://deno.land/x/test_suite@0.9.3 /mod.ts" ;
6060import { assertEquals } from " https://deno.land/std@0.117.0/testing/asserts.ts" ;
6161import {
6262 getUser ,
6363 resetUsers ,
6464 User ,
65- } from " https://deno.land/x/test_suite@0.9.2 /example/user.ts" ;
65+ } from " https://deno.land/x/test_suite@0.9.3 /example/user.ts" ;
6666
6767interface UserSuiteContext {
6868 user: User ;
@@ -139,13 +139,13 @@ import {
139139 beforeEach ,
140140 describe ,
141141 it ,
142- } from " https://deno.land/x/test_suite@0.9.2 /mod.ts" ;
142+ } from " https://deno.land/x/test_suite@0.9.3 /mod.ts" ;
143143import { assertEquals } from " https://deno.land/std@0.117.0/testing/asserts.ts" ;
144144import {
145145 getUser ,
146146 resetUsers ,
147147 User ,
148- } from " https://deno.land/x/test_suite@0.9.2 /examples/user.ts" ;
148+ } from " https://deno.land/x/test_suite@0.9.3 /examples/user.ts" ;
149149
150150describe (" user describe" , () => {
151151 let user: User ;
0 commit comments