mirror of
https://github.com/maputnik/editor.git
synced 2026-07-27 00:07:25 +00:00
Replace gone style store test with sample
This commit is contained in:
@@ -0,0 +1,7 @@
|
|||||||
|
import assert from 'assert'
|
||||||
|
|
||||||
|
describe('Component', () => {
|
||||||
|
it('#always successds', () => {
|
||||||
|
assert.equal(1, 1)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import { SettingsStore } from '../src/libs/stylestore.js'
|
|
||||||
import assert from 'assert'
|
|
||||||
|
|
||||||
describe('SettingsStore', () => {
|
|
||||||
const store = new SettingsStore()
|
|
||||||
|
|
||||||
it('#get should return access token from local storage', () => {
|
|
||||||
window.localStorage.setItem('maputnik:access_token', 'OLD_TOKEN')
|
|
||||||
assert.equal(store.accessToken, 'OLD_TOKEN')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('#set should set access token in local storage', () => {
|
|
||||||
store.accessToken = 'NEW_TOKEN'
|
|
||||||
assert.equal(window.localStorage.getItem('maputnik:access_token'), 'NEW_TOKEN')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
Reference in New Issue
Block a user