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

Test suite: Simplify usage of 'to throw'. #9

Merged
merged 1 commit into from
Apr 21, 2015
Merged
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
22 changes: 8 additions & 14 deletions test/unexpected-dom.js
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ describe('unexpected-dom', function () {

expect(function () {
expect(el, 'to only have attributes', 'id');
}, 'to throw exception',
}, 'to throw',
'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to only have attributes \'id\''
);
});
@@ -125,10 +125,8 @@ describe('unexpected-dom', function () {

expect(function () {
expect(el, 'to have attributes', 'id', 'foo');
}, 'to throw exception', function (err) {
expect(err.output.toString(), 'to be',
}, 'to throw',
'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to have attributes \'id\', \'foo\'');
});
});
});

@@ -145,9 +143,7 @@ describe('unexpected-dom', function () {

expect(function () {
expect(el, 'to only have attributes', ['id']);
}, 'to throw exception', function (err) {
expect(err.output.toString(), 'to be', 'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to only have attributes [ \'id\' ]');
});
}, 'to throw', 'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to only have attributes [ \'id\' ]');
});

it('should match partial arguments', function () {
@@ -162,9 +158,7 @@ describe('unexpected-dom', function () {

expect(function () {
expect(el, 'to have attributes', ['id', 'foo']);
}, 'to throw exception', function (err) {
expect(err.output.toString(), 'to be', 'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to have attributes [ \'id\', \'foo\' ]');
});
}, 'to throw', 'expected <button class="bar" data-info="baz" disabled id="foo">Press me</button> to have attributes [ \'id\', \'foo\' ]');
});
});

@@ -188,7 +182,7 @@ describe('unexpected-dom', function () {
expect(el, 'to only have attributes', {
id: 'foo'
});
}, 'to throw exception', /^expected <button class="bar" data-info="baz" disabled id="foo">Press me<\/button> to only have attributes/);
}, 'to throw', /^expected <button class="bar" data-info="baz" disabled id="foo">Press me<\/button> to only have attributes/);
});

it('should match partial object', function () {
@@ -209,7 +203,7 @@ describe('unexpected-dom', function () {
id: 'foo',
foo: 'bar'
});
}, 'to throw exception', /expected <button class="bar" data-info="baz" disabled id="foo">Press me<\/button>\nto have attributes/);
}, 'to throw', /expected <button class="bar" data-info="baz" disabled id="foo">Press me<\/button>\nto have attributes/);
});

describe('class attribute', function () {
@@ -339,7 +333,7 @@ describe('unexpected-dom', function () {
var document = jsdom.jsdom('<!DOCTYPE html><html><body><div id="foo"></div></body></html>');
expect(function () {
expect(document.body, 'queried for first', '.blabla', 'to have attributes', { id: 'foo' });
}, 'to throw error',
}, 'to throw',
'expected <body><div id="foo"></div></body> queried for first \'.blabla\', \'to have attributes\', { id: \'foo\' }\n' +
' The selector .blabla yielded no results'
);
@@ -349,7 +343,7 @@ describe('unexpected-dom', function () {
var document = jsdom.jsdom('<!DOCTYPE html><html><body><div id="foo"></div></body></html>');
expect(function () {
expect(document.body, 'queried for', '.blabla', 'to have attributes', { id: 'foo' });
}, 'to throw error',
}, 'to throw',
'expected <body><div id="foo"></div></body> queried for \'.blabla\', \'to have attributes\', { id: \'foo\' }\n' +
' The selector .blabla yielded no results'
);