-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathtest.constructor.js
More file actions
59 lines (53 loc) · 1.6 KB
/
test.constructor.js
File metadata and controls
59 lines (53 loc) · 1.6 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
'use strict';
describe('constructor errors', () => {
it('should error on an undefined name', () => {
try {
new PouchDB();
throw new Error('Should have thrown');
} catch (err) {
if (err.message === 'Should have thrown') {
throw err;
}
should.equal(err instanceof Error, true, 'should be an error');
}
});
it('should error on an undefined adapter', () => {
try {
new PouchDB('foo', {adapter : 'myFakeAdapter'});
throw new Error('Should have thrown');
} catch (err) {
if (err.message === 'Should have thrown') {
throw err;
}
should.equal(err instanceof Error, true, 'should be an error');
err.message.should
.equal('Invalid Adapter: myFakeAdapter',
'should give the correct error message');
}
});
it('should error on an undefined view adapter', () => {
try {
new PouchDB('foo', {view_adapter : 'myFakeViewAdapter'});
throw new Error('Should have thrown');
} catch (err) {
if (err.message === 'Should have thrown') {
throw err;
}
should.equal(err instanceof Error, true, 'should be an error');
err.message.should
.equal('Invalid View Adapter: myFakeViewAdapter',
'should give the correct error message');
}
});
it('should error on a null name', () => {
try {
new PouchDB(null);
throw new Error('Should have thrown');
} catch (err) {
if (err.message === 'Should have thrown') {
throw err;
}
should.equal(err instanceof Error, true, 'should be an error');
}
});
});