-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(service): devices typescript/di: add functional test stubs f…
…or device operations
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') | ||
}) | ||
}) | ||
}) |