mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
Interface is wired up for Approving/Rejecting posts
This commit is contained in:
@ -19,23 +19,51 @@ test('munging', function() {
|
||||
|
||||
test('update', function() {
|
||||
const store = createStore();
|
||||
|
||||
store.find('widget', 123).then(function(widget) {
|
||||
equal(widget.get('name'), 'Trout Lure');
|
||||
widget.update({ name: 'new name' }).then(function() {
|
||||
|
||||
ok(!widget.get('isSaving'));
|
||||
const promise = widget.update({ name: 'new name' });
|
||||
ok(widget.get('isSaving'));
|
||||
promise.then(function() {
|
||||
ok(!widget.get('isSaving'));
|
||||
equal(widget.get('name'), 'new name');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
test('updating simultaneously', function() {
|
||||
expect(2);
|
||||
|
||||
const store = createStore();
|
||||
store.find('widget', 123).then(function(widget) {
|
||||
|
||||
const firstPromise = widget.update({ name: 'new name' });
|
||||
const secondPromise = widget.update({ name: 'new name' });
|
||||
firstPromise.then(function() {
|
||||
ok(true, 'the first promise succeeeds');
|
||||
});
|
||||
|
||||
secondPromise.catch(function() {
|
||||
ok(true, 'the second promise fails');
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
test('save new', function() {
|
||||
const store = createStore();
|
||||
const widget = store.createRecord('widget');
|
||||
|
||||
ok(widget.get('isNew'), 'it is a new record');
|
||||
ok(!widget.get('isCreated'), 'it is not created');
|
||||
ok(!widget.get('isSaving'));
|
||||
|
||||
widget.save({ name: 'Evil Widget' }).then(function() {
|
||||
const promise = widget.save({ name: 'Evil Widget' });
|
||||
ok(widget.get('isSaving'));
|
||||
|
||||
promise.then(function() {
|
||||
ok(!widget.get('isSaving'));
|
||||
ok(widget.get('id'), 'it has an id');
|
||||
ok(widget.get('name'), 'Evil Widget');
|
||||
ok(widget.get('isCreated'), 'it is created');
|
||||
@ -43,6 +71,23 @@ test('save new', function() {
|
||||
});
|
||||
});
|
||||
|
||||
test('creating simultaneously', function() {
|
||||
expect(2);
|
||||
|
||||
const store = createStore();
|
||||
const widget = store.createRecord('widget');
|
||||
|
||||
const firstPromise = widget.save({ name: 'Evil Widget' });
|
||||
const secondPromise = widget.save({ name: 'Evil Widget' });
|
||||
firstPromise.then(function() {
|
||||
ok(true, 'the first promise succeeeds');
|
||||
});
|
||||
|
||||
secondPromise.catch(function() {
|
||||
ok(true, 'the second promise fails');
|
||||
});
|
||||
});
|
||||
|
||||
test('destroyRecord', function() {
|
||||
const store = createStore();
|
||||
store.find('widget', 123).then(function(widget) {
|
||||
|
Reference in New Issue
Block a user