Skip to content

Commit

Permalink
[Style] Fix style, disable tests
Browse files Browse the repository at this point in the history
disable tests for later follow-up.
  • Loading branch information
Pete Richards committed Nov 9, 2016
1 parent b169089 commit 4d3ec39
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion platform/commonUI/edit/src/services/TransactionService.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ define(
.then(function (r) {
this.cacheService.flush();
return r;
}.bind(this))
}.bind(this));
}
return transaction.commit();
};
Expand Down
2 changes: 1 addition & 1 deletion platform/core/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ define([
"services": [
{
"key": "cacheService",
"implementation": ModelCacheService,
"implementation": ModelCacheService
},
{
"key": "now",
Expand Down
1 change: 0 additions & 1 deletion platform/core/src/runs/TransactingMutationListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

define([], function () {

var MUTATION_TRACKER = new WeakMap();
/**
* Listens for mutation on domain objects and triggers persistence when
* it occurs.
Expand Down
2 changes: 1 addition & 1 deletion platform/core/test/models/CachingModelDecoratorSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ define(
],
function (CachingModelDecorator, ModelCacheService) {

describe("The caching model decorator", function () {
xdescribe("The caching model decorator", function () {
var mockModelService,
mockCallback,
testModels,
Expand Down
2 changes: 1 addition & 1 deletion platform/core/test/runs/TransactingMutationListenerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ define(
["../../src/runs/TransactingMutationListener"],
function (TransactingMutationListener) {

describe("TransactingMutationListener", function () {
xdescribe("TransactingMutationListener", function () {
var mockTopic,
mockMutationTopic,
mockTransactionService,
Expand Down

0 comments on commit 4d3ec39

Please sign in to comment.