forked from enviPath/enviPy
Current Dev State
This commit is contained in:
12
static/js/ketcher2/node_modules/generate-object-property/test.js
generated
vendored
Normal file
12
static/js/ketcher2/node_modules/generate-object-property/test.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
var tape = require('tape')
|
||||
var gen = require('./')
|
||||
|
||||
tape('valid', function(t) {
|
||||
t.same(gen('a', 'b'), 'a.b')
|
||||
t.end()
|
||||
})
|
||||
|
||||
tape('invalid', function(t) {
|
||||
t.same(gen('a', '-b'), 'a["-b"]')
|
||||
t.end()
|
||||
})
|
||||
Reference in New Issue
Block a user