basic-2.js 295 B

1234567891011
  1. const anchor = require('@project-serum/anchor');
  2. describe('basic-2', () => {
  3. // Configure the client to use the local cluster.
  4. anchor.setProvider(anchor.Provider.local());
  5. it('Applies constraints and access control', async () => {
  6. const program = anchor.workspace.Basic2;
  7. });
  8. });