8786b6fd08
* removes faker * attempts to fix global error in circle ci run * adds comments for destroyed check in file-to-array-buffer component
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
import { Factory } from 'ember-cli-mirage';
|
|
|
|
export default Factory.extend({
|
|
path: 'foo/',
|
|
description: 'secret-engine generated by mirage',
|
|
local: true,
|
|
sealWrap: true,
|
|
// set in afterCreate
|
|
accessor: 'type_7f52940',
|
|
type: 'kv',
|
|
options: null,
|
|
|
|
afterCreate(secretEngine) {
|
|
if (!secretEngine.options && ['generic', 'kv'].includes(secretEngine.type)) {
|
|
secretEngine.options = {
|
|
version: '2',
|
|
};
|
|
}
|
|
},
|
|
});
|