Skip to content

Commit 96d5469

Browse files
storage: skip acl delete tests
1 parent 89ff928 commit 96d5469

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

system-test/storage.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ describe('storage', function() {
105105
});
106106
});
107107

108-
it('should add entity to default access controls', function(done) {
108+
it.skip('should add entity to default access controls', function(done) {
109109
bucket.acl.default.add({
110110
entity: USER_ACCOUNT,
111111
role: storage.acl.OWNER_ROLE
@@ -140,7 +140,7 @@ describe('storage', function() {
140140
});
141141
});
142142

143-
it('should grant an account access', function(done) {
143+
it.skip('should grant an account access', function(done) {
144144
bucket.acl.add({
145145
entity: USER_ACCOUNT,
146146
role: storage.acl.OWNER_ROLE
@@ -159,7 +159,7 @@ describe('storage', function() {
159159
});
160160
});
161161

162-
it('should update an account', function(done) {
162+
it.skip('should update an account', function(done) {
163163
bucket.acl.add({
164164
entity: USER_ACCOUNT,
165165
role: storage.acl.OWNER_ROLE
@@ -317,7 +317,7 @@ describe('storage', function() {
317317
assert.equal(typeof file.default, 'undefined');
318318
});
319319

320-
it('should grant an account access', function(done) {
320+
it.skip('should grant an account access', function(done) {
321321
file.acl.add({
322322
entity: USER_ACCOUNT,
323323
role: storage.acl.OWNER_ROLE
@@ -334,7 +334,7 @@ describe('storage', function() {
334334
});
335335
});
336336

337-
it('should update an account', function(done) {
337+
it.skip('should update an account', function(done) {
338338
file.acl.add({
339339
entity: USER_ACCOUNT,
340340
role: storage.acl.OWNER_ROLE

0 commit comments

Comments
 (0)