Navigation Menu

Skip to content

Commit

Permalink
Run tests asynchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 27, 2012
1 parent dbb247c commit 65964b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/gcs-commands.test.js
Expand Up @@ -705,7 +705,7 @@ suite('gcs-configure-default-search-field', function() {
setup(commonSetup);
teardown(commonTeardown);

test('set to an existing field', function() {
test('set to an existing field', function(done) {
var domain = new Domain('companies', context).createSync();
domain.getIndexField('name').setType('text').createSync();
utils
Expand All @@ -729,7 +729,7 @@ suite('gcs-configure-default-search-field', function() {
});
});

test('set to a missing field', function() {
test('set to a missing field', function(done) {
var domain = new Domain('companies', context).createSync();
domain.getIndexField('name').setType('text').createSync();
utils
Expand All @@ -755,7 +755,7 @@ suite('gcs-configure-default-search-field', function() {
});
});

test('set to blank', function() {
test('set to blank', function(done) {
var domain = new Domain('companies', context).createSync();
domain.getIndexField('name').setType('text').createSync();
utils
Expand Down Expand Up @@ -784,7 +784,7 @@ suite('gcs-configure-default-search-field', function() {
});
});

test('set to blank (omitted "name" option)', function() {
test('set to blank (omitted "name" option)', function(done) {
var domain = new Domain('companies', context).createSync();
domain.getIndexField('name').setType('text').createSync();
utils
Expand Down

0 comments on commit 65964b7

Please sign in to comment.