-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbug-tracker.tests.js
More file actions
47 lines (35 loc) · 997 Bytes
/
bug-tracker.tests.js
File metadata and controls
47 lines (35 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* eslint-evn mocha */
import {BugTracker, Defaults} from 'meteor/eduhack:bug-tracker'
describe('Native errors', function () {
it('has a collection for native errors', function () {
assert.fail()
})
it('detects a native error type', function () {
assert.fail()
})
it('adds a native error to the respective collection', function () {
assert.fail()
})
})
describe('Meteor errors', function () {
it('has a collection for Meteor errors', function () {
assert.fail()
})
it('detects a Meteor error type', function () {
assert.fail()
})
it('adds a Meteor error to the respective collection', function () {
assert.fail()
})
})
describe('Custom errors', function () {
it('creates a new collection for custom errors', function () {
assert.fail()
})
it('detects a registered custom error type', function () {
assert.fail()
})
it('throws if the added error is not registered (thus unknown)', function () {
assert.fail()
})
})