Skip to content

Commit 27bfdfe

Browse files
committed
do not skip the tests
1 parent 8328c44 commit 27bfdfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/api-accounts.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ describe('OIDC flow', () => {
6767
if (bobServer) bobServer.close()
6868
})
6969

70-
it.skip('step1: User tries to get /foo and gets 401 and meta redirect', (done) => {
70+
it('step1: User tries to get /foo and gets 401 and meta redirect', (done) => {
7171
getBobFoo(alice, bob, done)
7272
})
7373

74-
it.skip('step2: User enters webId to signin', (done) => {
74+
it('step2: User enters webId to signin', (done) => {
7575
postBobDiscoverSignIn(alice, bob, done)
7676
})
7777

78-
it.skip('step3: User enters password', (done) => {
78+
it('step3: User enters password', (done) => {
7979
entersPasswordAndConsent(alice, bob, done)
8080
})
8181

82-
it.skip('entire flow', (done) => {
82+
it('entire flow', (done) => {
8383
waterfall([
8484
(cb) => getBobFoo(alice, bob, cb),
8585
(cb) => postBobDiscoverSignIn(alice, bob, cb),

0 commit comments

Comments
 (0)