Skip to content

Commit

Permalink
refactor(service): devices typescript/di: add functional test stubs f…
Browse files Browse the repository at this point in the history
…or device operations
  • Loading branch information
restjohn committed Aug 21, 2024
1 parent f4198cb commit aab463a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions service/functionalTests/devices/devices.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { expect } from 'chai'

describe('device operations', function() {

describe('removing', function() {

it('invalidates associated sessions', async function() {
expect.fail('todo')
})

it('prevents the owning user from authenticating with the device', async function() {
expect.fail('todo')
})
})

describe('disabling', function() {

it('invalidates existing associated sessions', async function() {
expect.fail('todo')
})

it('prevents the owning user from authenticating with the device', async function() {
expect.fail('todo')
})
})

describe('enabling', function() {

it('allows the owning user to authenticate with the device', async function() {
expect.fail('todo')
})
})
})

0 comments on commit aab463a

Please sign in to comment.