mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Factory } from 'ember-cli-mirage';
|
|
|
|
export default Factory.extend({
|
|
name: (i) => `node-pool-${i}`,
|
|
description: (i) => `describe node-pool-${i}`,
|
|
meta: {},
|
|
schedulerConfiguration: {},
|
|
});
|