• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript ember-qunit.test函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中ember-qunit.test函数的典型用法代码示例。如果您正苦于以下问题:TypeScript test函数的具体用法?TypeScript test怎么用?TypeScript test使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了test函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: module

  module('computedDecorator', function() {

    test('it works', function(assert) {
      let decorate = computedDecorator((target, key, { get, set }) => {
        return computed({ get, set });
      });

      class Foo {
        @decorate
        get foo() {
          return 'bar';
        }

        set foo(value) {}
      }

      assert.ok(isComputedDescriptor(computedDescriptorFor(Foo.prototype, 'foo')), 'descriptor correctly assigned');
    });

    test('it passes in the previous computed descriptor if it exists', function(assert) {
      let decorate = computedDecorator((target, key, { get, set }) => {
        return computed({ get, set });
      });

      let decorateAgain = computedDecorator((target, key, desc) => {
        assert.ok(isComputedDescriptor(desc), 'computed descriptor passed in correctly');

        return desc;
      });

      class Foo {
        @decorateAgain
        @decorate
        get foo() {
          return 'bar';
        }

        set foo(value) {}
      }

      new Foo();
    });

    test('it throws if the decorator does not return a CP descriptor', function(assert) {
      assert.throws(
        () => {
          let decorate = computedDecorator((target, key, desc) => {
            return desc;
          });

          class Foo {
            @decorate
            get foo() {
              return 'bar';
            }

            set foo(value) {}
          }

          new Foo();
        },
        /computed decorators must return an instance of an Ember ComputedProperty descriptor/
      );
    });
  });
开发者ID:jrjohnson,项目名称:utils,代码行数:65,代码来源:computed-helpers-test.ts


示例2: moduleForAcceptance

moduleForAcceptance('Acceptance | Events | Shirts | Viewing', {
  beforeEach() { mockSetup({ logLevel: 1, mockjaxLogLevel: 4 }); },
  afterEach() { mockTeardown(); }
});

test('a list of shirts', withChai(async expect => {
  authenticateSession();

  const event = make('event');
  const shirts = makeList('shirt', 2);

  mockQuery('shirt').returns({ models: shirts });
  mockFindRecord('event').returns({ model: event });

  await visit(`/dashboard/events/${event.id}/shirts`);

  expect(currentRouteName()).to.equal('events.show.shirts.index');

  const selector = '[data-test-shirts-list]';
  const list = find(selector);

  expect(list).to.be.ok
  expect(list.find('tr').length).to.equal(2);
}));

test('a single shirt with purchases', withChai(async expect => {
  authenticateSession();

  const event = make('event');
  const shirt = make('shirt', 'withPurchases');
开发者ID:NullVoxPopuli,项目名称:aeonvera-ui,代码行数:30,代码来源:viewing-test.ts


示例3: test

  // Specify the other units that are required for this test.
  // needs: ['service:foo']
});

test('it fires "didResize"  when the window is resized', function(assert) {

  const service = this.subject({
    heightSensitive: true,
    widthSensitive: false,
  });
  let didResizeCallCount = 0;
  service.on('didResize', () => {
    didResizeCallCount++;
  });

  const evt = new Event('resize');

  window.dispatchEvent(evt);
  assert.equal(didResizeCallCount, 0, 'didResize called 0 time on event firing');
  service.incrementProperty('_oldHeight', -20);
  window.dispatchEvent(evt);
  assert.equal(didResizeCallCount, 1, 'didResize called 1 time on event firing');
  service.set('heightSensitive', false);
  service.incrementProperty('_oldHeight', -20);
  window.dispatchEvent(evt);
  assert.equal(didResizeCallCount, 1, 'didResize shouldn\'t be called again if heightSensitive is false');

});

test('screenHeight is bound to the non debounced resize', function(assert) {

  const service = this.subject({
开发者ID:mike-north,项目名称:ember-resize,代码行数:32,代码来源:resize-test.ts


示例4: test

    // custom url mock
    Ember.$.mockjax({ url, responseText: payload, type: 'GET' });
    Ember.$.mockjax({ url: 'https://checkout.stripe.com/api/outer/manhattan?key=a', responseText: {}, type: 'GET' });
  }
}


test('a registration is visible', withChai(async expect => {
  authenticateSession();

  // ember-data mocks
  const event = make('event', { isEvent: true });
  const order = make('order', { paid: false, total: 50, orderLineItems: [] });
  const registrations = makeList('users/registration', 1, { attendeeFirstName: 'First', attendeeLastName: 'Last', orders: [order], unpaidOrder: order });

  const rootRegistrationUrl = `${event.get('domain')}/register/${event.get('id')}`;
  mockRequests({ event, registrations, order });

  await visit(rootRegistrationUrl);
  expect(currentRouteName()).to.eq('register.event-registration.index');

  const text = find('td').text()

  expect(text).to.include('First Last')
}));

test('no items - are incomplete', withChai(async expect => {
  authenticateSession();

  // ember-data mocks
  const event = make('event', { isEvent: true });
  const order = make('order', { paid: false, total: 50, orderLineItems: [] });
开发者ID:NullVoxPopuli,项目名称:aeonvera-ui,代码行数:32,代码来源:view-all-test.ts


示例5: setResolver

// if you don't have a custom resolver, do it like this:
setResolver(Ember.DefaultResolver.create());

test('it renders', function(assert) {
    assert.expect(2);

    // setup the outer context
    this.set('value', 'cat');
    this.on('action', function(result) {
        assert.equal(result, 'bar', 'The correct result was returned');
        assert.equal(this.get('value'), 'cat');
    });

    // render the component
    this.render(hbs`
        {{ x-foo value=value action="result" }}
    `);
    this.render('{{ x-foo value=value action="result" }}');
    this.render([
        '{{ x-foo value=value action="result" }}'
    ]);

    assert.equal(this.$('div>.value').text(), 'cat', 'The component shows the correct value');

    this.$('button').click();
});

test('it renders', function(assert) {
    assert.expect(1);
开发者ID:AdaskoTheBeAsT,项目名称:DefinitelyTyped,代码行数:29,代码来源:ember-qunit-tests.ts


示例6: beforeEach

  beforeEach() { mockSetup({ logLevel: 1, mockjaxLogLevel: 4 }); },
  afterEach() { mockTeardown(); }
});

test('can navigate from upcoming events', withChai(async expect => {
  const upcomingEvents = makeList('upcoming-event', 2);
  const openingTier = make('pricing-tier', { date: new Date(2016, 7) });
  const event = make('event', { openingTier });

  mockFindAll('upcoming-event').returns({ models: upcomingEvents });
  mockFindRecord('event').returns({ model: event });

  const url = `/api/hosts/${event.get('domain')}`;
  const payload = { data: { type: 'events', id: 1, attributes: { id: 1, name: event.get('name') } } };

  Ember.$.mockjax({ url, responseText: payload, type: 'GET' });

  await visit('/upcoming-events');

  const upcomingEvent = upcomingEvents.get(0);
  const linkSelector = `[data-test-upcoming-event-id="${upcomingEvent.id}"] a`;
  const link = find(linkSelector);
  const text = link.text();

  expect(text).to.include(upcomingEvent.get('name'));

  await click(linkSelector);

  expect(currentRouteName()).to.equal('register.event-registration.must-login');
}));
开发者ID:NullVoxPopuli,项目名称:aeonvera-ui,代码行数:30,代码来源:user-is-not-logged-in-test.ts


示例7: beforeEach

    'model:line-item',
    'model:shirt',
    'model:custom-field',
    'model:sponsorship',
    'model:registration',
    'model:integration'
  ],

  beforeEach() {
    manualSetup(this.container);
  }
});

test('#registrationIsOpen is true once registrationOpensAt is in the past', function(assert) {
  const openingTier = make('opening-tier');
  const event = make('event', { openingTier });

  Ember.run(() => event.set('registrationOpensAt', moment().subtract(1, 'days').toDate()));

  assert.ok(event.get('registrationIsOpen'))
});

test('#registrationIsOpen is false if registrationOpensAt is in the future', function(assert) {
  const openingTier = make('opening-tier');
  const event = make('event', { openingTier });

  Ember.run(() => event.set('registrationOpensAt', moment().add(1, 'days').toDate()));

  assert.notOk(event.get('registrationIsOpen'))
});
开发者ID:NullVoxPopuli,项目名称:aeonvera-ui,代码行数:30,代码来源:event-test.ts



注:本文中的ember-qunit.test函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript ember-routing.generateController函数代码示例发布时间:2022-05-25
下一篇:
TypeScript ember-qunit.skip函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap