sakuraapi / cli

Command Line Interface for Scaffolding and Managing SakuraAPI Projects
BSD 3-Clause "New" or "Revised" License
4 stars 1 forks source link

sapi init should properly scaffold tests #26

Open etsuo opened 6 years ago

etsuo commented 6 years ago
describe('Password', () => {
  let sapi;
  beforeEach(() => {
    sapi = testSapi({
      providers: [
        PasswordService
      ]
    });
  });

  afterEach(() => {
    sapi.deregisterDependencies();
  });

  it(...) // whatever this is being done now
});