chore(packaging): update imports in tools

This commit is contained in:
Yegor Jbanov 2015-02-05 15:58:15 -08:00
parent bfdcb6c77c
commit 9f6b6cc50c
12 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
import {describe, it, expect, iit} from 'test_lib/test_lib'; import {describe, it, expect, iit} from 'angular2/test_lib';
import {readFirstAnnotation} from './fixtures/annotations'; import {readFirstAnnotation} from './fixtures/annotations';
import {CONST} from 'facade/src/lang'; import {CONST} from 'angular2/src/facade/lang';
class Inject {} class Inject {}
class Bar {} class Bar {}

View File

@ -1,4 +1,4 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
var inc = x => x + 1; var inc = x => x + 1;

View File

@ -1,4 +1,4 @@
import {ddescribe, describe, it, expect} from 'test_lib/test_lib'; import {ddescribe, describe, it, expect} from 'angular2/test_lib';
import {CONST} from './fixtures/annotations'; import {CONST} from './fixtures/annotations';
class Foo { class Foo {

View File

@ -1,4 +1,4 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
import {cycle} from './cycle'; import {cycle} from './cycle';
export function main() { export function main() {

View File

@ -1,4 +1,4 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
function same(a, b) { function same(a, b) {
return a === b; return a === b;

View File

@ -1,5 +1,5 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
import {ListWrapper, MapWrapper} from 'facade/src/collection'; import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection';
import {IterableList} from './fixtures/facade'; import {IterableList} from './fixtures/facade';
export function main() { export function main() {

View File

@ -1,4 +1,4 @@
import {describe, ddescribe, it, iit, expect} from 'test_lib/test_lib'; import {describe, ddescribe, it, iit, expect} from 'angular2/test_lib';
function sum(a, b) { function sum(a, b) {
return a + b; return a + b;

View File

@ -1,4 +1,4 @@
import {describe, it, expect, IS_DARTIUM} from 'test_lib/test_lib'; import {describe, it, expect, IS_DARTIUM} from 'angular2/test_lib';
import {Foo, Bar} from './foo'; import {Foo, Bar} from './foo';
// TODO: Does not work, as dart does not support renaming imports // TODO: Does not work, as dart does not support renaming imports
@ -7,7 +7,7 @@ import * as fooModule from './foo';
import * as exportModule from './export'; import * as exportModule from './export';
import {Type} from 'facade/src/lang'; import {Type} from 'angular2/src/facade/lang';
import {Baz} from './reexport'; import {Baz} from './reexport';

View File

@ -1,4 +1,4 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
class Foo {} class Foo {}

View File

@ -1,4 +1,4 @@
import {ddescribe, describe, it, iit, expect, IS_DARTIUM} from 'test_lib/test_lib'; import {ddescribe, describe, it, iit, expect, IS_DARTIUM} from 'angular2/test_lib';
import {IMPLEMENTS} from './fixtures/annotations'; import {IMPLEMENTS} from './fixtures/annotations';
class Interface1 { class Interface1 {

View File

@ -1,4 +1,4 @@
import {describe, it, expect} from 'test_lib/test_lib'; import {describe, it, expect} from 'angular2/test_lib';
export function main() { export function main() {
describe('lang', function() { describe('lang', function() {

View File

@ -1,4 +1,4 @@
import {describe, xdescribe, it, expect, IS_DARTIUM} from 'test_lib/test_lib'; import {describe, xdescribe, it, expect, IS_DARTIUM} from 'angular2/test_lib';
class A {} class A {}
class B {} class B {}